Enum longport::quote::WarrantStatus
source · #[repr(i32)]pub enum WarrantStatus {
Suspend = 2,
PrepareList = 3,
Normal = 4,
}
Expand description
Warrant status
Variants§
Trait Implementations§
source§impl Clone for WarrantStatus
impl Clone for WarrantStatus
source§fn clone(&self) -> WarrantStatus
fn clone(&self) -> WarrantStatus
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 WarrantStatus
impl Debug for WarrantStatus
source§impl From<WarrantStatus> for i32
impl From<WarrantStatus> for i32
source§fn from(enum_value: WarrantStatus) -> Self
fn from(enum_value: WarrantStatus) -> Self
Converts to this type from the input type.
source§impl Hash for WarrantStatus
impl Hash for WarrantStatus
source§impl PartialEq for WarrantStatus
impl PartialEq for WarrantStatus
source§fn eq(&self, other: &WarrantStatus) -> bool
fn eq(&self, other: &WarrantStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<i32> for WarrantStatus
impl TryFrom<i32> for WarrantStatus
source§impl TryFromPrimitive for WarrantStatus
impl TryFromPrimitive for WarrantStatus
impl Copy for WarrantStatus
impl Eq for WarrantStatus
impl StructuralPartialEq for WarrantStatus
Auto Trait Implementations§
impl Freeze for WarrantStatus
impl RefUnwindSafe for WarrantStatus
impl Send for WarrantStatus
impl Sync for WarrantStatus
impl Unpin for WarrantStatus
impl UnwindSafe for WarrantStatus
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: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
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
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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