[][src]Struct nifti::extension::Extender

pub struct Extender(_);

Data type for the extender code.

Implementations

impl Extender[src]

pub fn from_reader<S: Read>(mut source: S) -> Result<Self>[src]

Fetch the extender code from the given source, while expecting it to exist.

pub fn from_reader_optional<S: Read>(mut source: S) -> Result<Option<Self>>[src]

Fetch the extender code from the given source, while being possible to not be available. Returns None if the source reaches EoF prematurely. Any other I/O error is delegated to a NiftiError.

pub fn has_extensions(&self) -> bool[src]

Whether extensions should exist upon this extender code.

pub fn as_bytes(&self) -> &[u8; 4][src]

Get the extender's bytes

Trait Implementations

impl Clone for Extender[src]

impl Copy for Extender[src]

impl Debug for Extender[src]

impl Default for Extender[src]

impl From<[u8; 4]> for Extender[src]

impl PartialEq<Extender> for Extender[src]

impl StructuralPartialEq for Extender[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: PartialEq<T> + Copy + Any + Debug
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,