#[non_exhaustive]pub enum BondPrimaryReselect {
Always,
Better,
Failure,
Other(u8),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for BondPrimaryReselect
impl Clone for BondPrimaryReselect
Source§fn clone(&self) -> BondPrimaryReselect
fn clone(&self) -> BondPrimaryReselect
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 BondPrimaryReselect
impl Debug for BondPrimaryReselect
Source§impl Default for BondPrimaryReselect
impl Default for BondPrimaryReselect
Source§fn default() -> BondPrimaryReselect
fn default() -> BondPrimaryReselect
Returns the “default value” for a type. Read more
Source§impl Display for BondPrimaryReselect
impl Display for BondPrimaryReselect
Source§impl From<BondPrimaryReselect> for u8
impl From<BondPrimaryReselect> for u8
Source§fn from(value: BondPrimaryReselect) -> Self
fn from(value: BondPrimaryReselect) -> Self
Converts to this type from the input type.
Source§impl From<u8> for BondPrimaryReselect
impl From<u8> for BondPrimaryReselect
Source§impl PartialEq for BondPrimaryReselect
impl PartialEq for BondPrimaryReselect
impl Copy for BondPrimaryReselect
impl Eq for BondPrimaryReselect
impl StructuralPartialEq for BondPrimaryReselect
Auto Trait Implementations§
impl Freeze for BondPrimaryReselect
impl RefUnwindSafe for BondPrimaryReselect
impl Send for BondPrimaryReselect
impl Sync for BondPrimaryReselect
impl Unpin for BondPrimaryReselect
impl UnwindSafe for BondPrimaryReselect
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