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