[][src]Struct nifti::extension::Extension

pub struct Extension { /* fields omitted */ }

Data type for the raw contents of an extension. Users of this type have to reinterpret the data to suit their needs.

Implementations

impl Extension[src]

pub fn new(esize: i32, ecode: i32, edata: Vec<u8>) -> Self[src]

Create an extension out of its main components.

Panics

If esize does not correspond to the full size of the extension in bytes: 8 + edata.len()

pub fn size(&self) -> i32[src]

Obtain the claimed extension raw size (esize field).

pub fn code(&self) -> i32[src]

Obtain the extension's code (ecode field).

pub fn data(&self) -> &Vec<u8>[src]

Obtain the extension's data (edata field).

pub fn into_data(self) -> Vec<u8>[src]

Take the extension's raw data, discarding the rest.

Trait Implementations

impl Clone for Extension[src]

impl Debug for Extension[src]

impl PartialEq<Extension> for Extension[src]

impl StructuralPartialEq for Extension[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<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>,