[][src]Struct calamine::Xlsx

pub struct Xlsx<RS> where
    RS: Read + Seek
{ /* fields omitted */ }

A struct representing xml zipped excel file Xlsx, Xlsm, Xlam

Trait Implementations

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

type RS = RS

Inner reader type

type Error = XlsxError

Error specific to file type

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 Xlsx<RS> where
    RS: Unpin

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

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

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

impl<RS> UnwindSafe for Xlsx<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]