[][src]Struct calamine::Xls

pub struct Xls<RS> { /* fields omitted */ }

A struct representing an old xls format file (CFB)

Trait Implementations

impl<RS: Read + Seek> Reader for Xls<RS>[src]

type Error = XlsError

Error specific to file type

type RS = RS

Inner reader type

fn metadata(&self) -> &Metadata[src]

Parses Workbook stream, no need for the relationships variable

fn sheet_names(&self) -> &[String][src]

Get all sheet names of this workbook Read more

fn defined_names(&self) -> &[(String, String)][src]

Get all defined names (Ranges names etc)

Auto Trait Implementations

impl<RS> Unpin for Xls<RS> where
    RS: Unpin

impl<RS> Sync for Xls<RS> where
    RS: Sync

impl<RS> Send for Xls<RS> where
    RS: Send

impl<RS> RefUnwindSafe for Xls<RS> where
    RS: RefUnwindSafe

impl<RS> UnwindSafe for Xls<RS> where
    RS: UnwindSafe

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<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]