Struct EncodingComparisonOptions
pub struct EncodingComparisonOptions {
pub addresses: AddressComparisonOptions,
pub treat_missing_as_equal: bool,
}Expand description
Options for comparing Encodings.
Fields§
§addresses: AddressComparisonOptionsComparison options for the address comparison.
treat_missing_as_equal: boolWhen set to true, comparing a computation against a missing (i.e., not synthesized) computation is treated as equivalent.
Implementations§
§impl EncodingComparisonOptions
impl EncodingComparisonOptions
pub const fn new() -> Self
pub const fn new() -> Self
Creates new comparison options with all fields set to false.
Trait Implementations§
§impl Clone for EncodingComparisonOptions
impl Clone for EncodingComparisonOptions
§fn clone(&self) -> EncodingComparisonOptions
fn clone(&self) -> EncodingComparisonOptions
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for EncodingComparisonOptions
impl Debug for EncodingComparisonOptions
§impl Default for EncodingComparisonOptions
impl Default for EncodingComparisonOptions
§fn default() -> EncodingComparisonOptions
fn default() -> EncodingComparisonOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EncodingComparisonOptions
impl RefUnwindSafe for EncodingComparisonOptions
impl Send for EncodingComparisonOptions
impl Sync for EncodingComparisonOptions
impl Unpin for EncodingComparisonOptions
impl UnwindSafe for EncodingComparisonOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more