Struct nifti::extension::ExtensionSequence[][src]

pub struct ExtensionSequence { /* fields omitted */ }

Data type for aggregating the extender code and all extensions.

Methods

impl ExtensionSequence
[src]

Read a sequence of extensions from a source, up until len bytes.

Obtain an iterator to the extensions.

Whether the sequence of extensions is empty.

Obtain the number of extensions available.

Get the extender code from this extension sequence.

Trait Implementations

impl Debug for ExtensionSequence
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ExtensionSequence
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for ExtensionSequence
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl IntoIterator for ExtensionSequence
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl<'a> IntoIterator for &'a ExtensionSequence
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

Auto Trait Implementations