[][src]Trait nifti::volume::FromSourceOptions

pub trait FromSourceOptions {
    type Options: Clone + Default;
}

Interface for specifying the type for the set of options that are relevent for constructing a volume instance from a data source. The separation between this type and FromSource is important because the options are invariant with respect to the reader type R.

Associated Types

type Options: Clone + Default

Set of additional options required (or useful) for constructing a volume.

Loading content...

Implementors

impl FromSourceOptions for InMemNiftiVolume[src]

type Options = ()

impl<R> FromSourceOptions for StreamedNiftiVolume<R>[src]

Loading content...