#[repr(u32)]
pub enum fe_transmit_mode {
TRANSMISSION_MODE_2K,
TRANSMISSION_MODE_8K,
TRANSMISSION_MODE_AUTO,
TRANSMISSION_MODE_4K,
TRANSMISSION_MODE_1K,
TRANSMISSION_MODE_16K,
TRANSMISSION_MODE_32K,
TRANSMISSION_MODE_C1,
TRANSMISSION_MODE_C3780,
}Variants
TRANSMISSION_MODE_2K
TRANSMISSION_MODE_8K
TRANSMISSION_MODE_AUTO
TRANSMISSION_MODE_4K
TRANSMISSION_MODE_1K
TRANSMISSION_MODE_16K
TRANSMISSION_MODE_32K
TRANSMISSION_MODE_C1
TRANSMISSION_MODE_C3780
Implementations
sourceimpl fe_transmit_mode
impl fe_transmit_mode
pub const fn from_repr(discriminant: u32) -> Option<fe_transmit_mode>
Trait Implementations
sourceimpl Clone for fe_transmit_mode
impl Clone for fe_transmit_mode
sourcefn clone(&self) -> fe_transmit_mode
fn clone(&self) -> fe_transmit_mode
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for fe_transmit_mode
impl Debug for fe_transmit_mode
sourceimpl FromStr for fe_transmit_mode
impl FromStr for fe_transmit_mode
type Err = ParseError
type Err = ParseError
The associated error which can be returned from parsing.
sourceimpl PartialEq<fe_transmit_mode> for fe_transmit_mode
impl PartialEq<fe_transmit_mode> for fe_transmit_mode
sourceimpl TryFrom<&'_ str> for fe_transmit_mode
impl TryFrom<&'_ str> for fe_transmit_mode
type Error = ParseError
type Error = ParseError
The type returned in the event of a conversion error.
impl Copy for fe_transmit_mode
impl Eq for fe_transmit_mode
impl StructuralEq for fe_transmit_mode
impl StructuralPartialEq for fe_transmit_mode
Auto Trait Implementations
impl RefUnwindSafe for fe_transmit_mode
impl Send for fe_transmit_mode
impl Sync for fe_transmit_mode
impl Unpin for fe_transmit_mode
impl UnwindSafe for fe_transmit_mode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more