#[repr(i32)]pub enum FilterWarrantExpiryDate {
LT_3 = 1,
Between_3_6 = 2,
Between_6_12 = 3,
GT_12 = 4,
}
Expand description
Filter warrant expiry date type
Variants§
LT_3 = 1
Less than 3 months
Between_3_6 = 2
3 - 6 months
Between_6_12 = 3
6 - 12 months
GT_12 = 4
Greater than 12 months
Trait Implementations§
source§impl Clone for FilterWarrantExpiryDate
impl Clone for FilterWarrantExpiryDate
source§fn clone(&self) -> FilterWarrantExpiryDate
fn clone(&self) -> FilterWarrantExpiryDate
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 moresource§impl Debug for FilterWarrantExpiryDate
impl Debug for FilterWarrantExpiryDate
source§impl From<FilterWarrantExpiryDate> for i32
impl From<FilterWarrantExpiryDate> for i32
source§fn from(enum_value: FilterWarrantExpiryDate) -> Self
fn from(enum_value: FilterWarrantExpiryDate) -> Self
Converts to this type from the input type.
source§impl Hash for FilterWarrantExpiryDate
impl Hash for FilterWarrantExpiryDate
source§impl PartialEq for FilterWarrantExpiryDate
impl PartialEq for FilterWarrantExpiryDate
impl Copy for FilterWarrantExpiryDate
impl Eq for FilterWarrantExpiryDate
impl StructuralPartialEq for FilterWarrantExpiryDate
Auto Trait Implementations§
impl Freeze for FilterWarrantExpiryDate
impl RefUnwindSafe for FilterWarrantExpiryDate
impl Send for FilterWarrantExpiryDate
impl Sync for FilterWarrantExpiryDate
impl Unpin for FilterWarrantExpiryDate
impl UnwindSafe for FilterWarrantExpiryDate
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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