[][src]Struct calamine::Xlsb

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

A Xlsb reader

Trait Implementations

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

type RS = RS

Inner reader type

type Error = XlsbError

Error specific to file type

fn worksheet_range(
    &mut self,
    name: &str
) -> Option<Result<Range<DataType>, XlsbError>>
[src]

MS-XLSB 2.1.7.62

fn worksheet_formula(
    &mut self,
    name: &str
) -> Option<Result<Range<String>, XlsbError>>
[src]

MS-XLSB 2.1.7.62

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

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

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

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

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