Trait binaryninja::types::ConfMergable
source · pub trait ConfMergable<T, O> {
type Result;
// Required method
fn merge(self, other: O) -> Self::Result;
}
Required Associated Types§
Required Methods§
Implementations on Foreign Types§
source§impl<T> ConfMergable<T, Option<Conf<T>>> for Option<Conf<T>>
impl<T> ConfMergable<T, Option<Conf<T>>> for Option<Conf<T>>
Returns best non-None value or None
Option<Conf<T>>
+ Option<Conf<T>>
→ Option<Conf<T>>
source§impl<T> ConfMergable<T, Conf<T>> for Option<Conf<T>>
impl<T> ConfMergable<T, Conf<T>> for Option<Conf<T>>
Returns RHS if LHS is None
Option<Conf<T>>
+ Conf<T>
→ Conf<T>