#[repr(u32)]
pub enum fe_interleaving {
INTERLEAVING_NONE,
INTERLEAVING_AUTO,
INTERLEAVING_240,
INTERLEAVING_720,
}Variants
INTERLEAVING_NONE
INTERLEAVING_AUTO
INTERLEAVING_240
INTERLEAVING_720
Implementations
sourceimpl fe_interleaving
impl fe_interleaving
pub const fn from_repr(discriminant: u32) -> Option<fe_interleaving>
Trait Implementations
sourceimpl Clone for fe_interleaving
impl Clone for fe_interleaving
sourcefn clone(&self) -> fe_interleaving
fn clone(&self) -> fe_interleaving
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_interleaving
impl Debug for fe_interleaving
sourceimpl FromStr for fe_interleaving
impl FromStr for fe_interleaving
type Err = ParseError
type Err = ParseError
The associated error which can be returned from parsing.
sourceimpl PartialEq<fe_interleaving> for fe_interleaving
impl PartialEq<fe_interleaving> for fe_interleaving
sourceimpl TryFrom<&'_ str> for fe_interleaving
impl TryFrom<&'_ str> for fe_interleaving
type Error = ParseError
type Error = ParseError
The type returned in the event of a conversion error.
impl Copy for fe_interleaving
impl Eq for fe_interleaving
impl StructuralEq for fe_interleaving
impl StructuralPartialEq for fe_interleaving
Auto Trait Implementations
impl RefUnwindSafe for fe_interleaving
impl Send for fe_interleaving
impl Sync for fe_interleaving
impl Unpin for fe_interleaving
impl UnwindSafe for fe_interleaving
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