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

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

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

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

Implementors