pub struct AddressGroups<T> {
pub ge_amount: ByGreatEqualAmount<T>,
pub amount_range: ByAmountRange<T>,
pub lt_amount: ByLowerThanAmount<T>,
}
Fields§
§ge_amount: ByGreatEqualAmount<T>
§amount_range: ByAmountRange<T>
§lt_amount: ByLowerThanAmount<T>
Implementations§
Source§impl<T> AddressGroups<T>
impl<T> AddressGroups<T>
Source§impl<T> AddressGroups<(GroupFilter, T)>
impl<T> AddressGroups<(GroupFilter, T)>
pub fn iter_right(&self) -> impl Iterator<Item = &T>
Trait Implementations§
Source§impl<T: Clone> Clone for AddressGroups<T>
impl<T: Clone> Clone for AddressGroups<T>
Source§fn clone(&self) -> AddressGroups<T>
fn clone(&self) -> AddressGroups<T>
Returns a duplicate 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 moreSource§impl<T: Default> Default for AddressGroups<T>
impl<T: Default> Default for AddressGroups<T>
Source§fn default() -> AddressGroups<T>
fn default() -> AddressGroups<T>
Returns the “default value” for a type. Read more
Source§impl<T> From<AddressGroups<T>> for AddressGroups<(GroupFilter, T)>
impl<T> From<AddressGroups<T>> for AddressGroups<(GroupFilter, T)>
Source§fn from(value: AddressGroups<T>) -> Self
fn from(value: AddressGroups<T>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<T> Freeze for AddressGroups<T>where
T: Freeze,
impl<T> RefUnwindSafe for AddressGroups<T>where
T: RefUnwindSafe,
impl<T> Send for AddressGroups<T>where
T: Send,
impl<T> Sync for AddressGroups<T>where
T: Sync,
impl<T> Unpin for AddressGroups<T>where
T: Unpin,
impl<T> UnwindSafe for AddressGroups<T>where
T: UnwindSafe,
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,
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