[][src]Struct cryiorust::edf::EdfFrame

pub struct EdfFrame { /* fields omitted */ }

Methods

impl EdfFrame[src]

pub fn new() -> EdfFrame[src]

pub fn read_buffer<R: BufRead + Seek>(reader: R) -> Result<EdfFrame>[src]

pub fn write_file<P: AsRef<Path>>(&mut self, path: P) -> Result<()>[src]

pub fn read_file<P: AsRef<Path>>(path: P) -> Result<EdfFrame>[src]

pub fn save_array<P: Write>(
    array: &Array,
    header: &mut Header,
    writer: &mut P,
    cast: DataType
) -> Result<()>
[src]

pub fn save_buffer<P: Write>(
    &mut self,
    writer: &mut P,
    cast: DataType
) -> Result<()>
[src]

pub fn save_file<P: AsRef<Path>>(
    &mut self,
    path: P,
    cast: DataType
) -> Result<()>
[src]

Trait Implementations

impl Frame for EdfFrame[src]

Auto Trait Implementations

Blanket Implementations

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

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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