Enum tiff::tags::SampleFormat
source · [−]pub enum SampleFormat {
Uint,
Int,
IEEEFP,
Void,
Unknown(u16),
// some variants omitted
}
Variants
Uint
Int
IEEEFP
Void
Unknown(u16)
An unknown extension sample format
Implementations
Trait Implementations
sourceimpl Clone for SampleFormat
impl Clone for SampleFormat
sourcefn clone(&self) -> SampleFormat
fn clone(&self) -> SampleFormat
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 SampleFormat
impl Debug for SampleFormat
sourceimpl Hash for SampleFormat
impl Hash for SampleFormat
sourceimpl PartialEq<SampleFormat> for SampleFormat
impl PartialEq<SampleFormat> for SampleFormat
sourcefn eq(&self, other: &SampleFormat) -> bool
fn eq(&self, other: &SampleFormat) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SampleFormat) -> bool
fn ne(&self, other: &SampleFormat) -> bool
This method tests for !=
.
impl Copy for SampleFormat
impl Eq for SampleFormat
impl StructuralEq for SampleFormat
impl StructuralPartialEq for SampleFormat
Auto Trait Implementations
impl RefUnwindSafe for SampleFormat
impl Send for SampleFormat
impl Sync for SampleFormat
impl Unpin for SampleFormat
impl UnwindSafe for SampleFormat
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> Pointable for T
impl<T> Pointable for T
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