[][src]Struct cryiorust::cbf::CbfFrame

pub struct CbfFrame { /* fields omitted */ }

Methods

impl CbfFrame[src]

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

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

pub fn created(&self) -> &DateTime<Local>[src]

pub fn name(&self) -> &str[src]

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

pub fn read_buffer<R: BufRead + Seek>(
    reader: R,
    unpack: bool
) -> Result<CbfFrame>
[src]

pub fn unpack(&mut self) -> Result<()>[src]

pub fn header(&self) -> &Header[src]

Trait Implementations

impl Frame for CbfFrame[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]