#[non_exhaustive]pub enum BandType {
Transmit,
Receive,
}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§
impl Copy for BandType
impl Eq for BandType
Source§impl Ord for BandType
impl Ord for BandType
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for BandType
impl PartialOrd for BandType
impl StructuralPartialEq for BandType
Auto Trait Implementations§
impl Freeze for BandType
impl RefUnwindSafe for BandType
impl Send for BandType
impl Sync for BandType
impl Unpin for BandType
impl UnsafeUnpin for BandType
impl UnwindSafe for BandType
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