#[repr(u64)]pub enum FecRequired {
NotRequired = 0,
Required = 1,
}Variants§
Trait Implementations§
Source§impl Clone for FecRequired
impl Clone for FecRequired
Source§fn clone(&self) -> FecRequired
fn clone(&self) -> FecRequired
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 Debug for FecRequired
impl Debug for FecRequired
Source§impl From<&FecRequired> for u8
impl From<&FecRequired> for u8
Source§fn from(value: &FecRequired) -> Self
fn from(value: &FecRequired) -> Self
Converts to this type from the input type.
Source§impl From<FecRequired> for i16
impl From<FecRequired> for i16
Source§fn from(value: FecRequired) -> Self
fn from(value: FecRequired) -> Self
Converts to this type from the input type.
Source§impl From<FecRequired> for i32
impl From<FecRequired> for i32
Source§fn from(value: FecRequired) -> Self
fn from(value: FecRequired) -> Self
Converts to this type from the input type.
Source§impl From<FecRequired> for i64
impl From<FecRequired> for i64
Source§fn from(value: FecRequired) -> Self
fn from(value: FecRequired) -> Self
Converts to this type from the input type.
Source§impl From<FecRequired> for u16
impl From<FecRequired> for u16
Source§fn from(value: FecRequired) -> Self
fn from(value: FecRequired) -> Self
Converts to this type from the input type.
Source§impl From<FecRequired> for u32
impl From<FecRequired> for u32
Source§fn from(value: FecRequired) -> Self
fn from(value: FecRequired) -> Self
Converts to this type from the input type.
Source§impl From<FecRequired> for u64
impl From<FecRequired> for u64
Source§fn from(value: FecRequired) -> Self
fn from(value: FecRequired) -> Self
Converts to this type from the input type.
Source§impl From<FecRequired> for u8
impl From<FecRequired> for u8
Source§fn from(value: FecRequired) -> Self
fn from(value: FecRequired) -> Self
Converts to this type from the input type.
Source§impl Hash for FecRequired
impl Hash for FecRequired
Source§impl PartialEq for FecRequired
impl PartialEq for FecRequired
Source§impl TryFrom<u8> for FecRequired
impl TryFrom<u8> for FecRequired
impl Copy for FecRequired
impl Eq for FecRequired
impl StructuralPartialEq for FecRequired
Auto Trait Implementations§
impl Freeze for FecRequired
impl RefUnwindSafe for FecRequired
impl Send for FecRequired
impl Sync for FecRequired
impl Unpin for FecRequired
impl UnwindSafe for FecRequired
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