Struct calamine::Ods[][src]

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

An OpenDocument Spreadsheet document parser

Reference

OASIS Open Document Format for Office Application 1.2 (ODF 1.2) http://docs.oasis-open.org/office/v1.2/OpenDocument-v1.2.pdf

Trait Implementations

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

type RS = RS

Inner reader type

type Error = OdsError

Error specific to file type

fn vba_project(&mut self) -> Option<Result<Cow<'_, VbaProject>, OdsError>>[src]

Gets VbaProject

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

Read sheets from workbook.xml and get their corresponding path from relationships

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

Read worksheet data in corresponding worksheet path

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

Read worksheet data in corresponding worksheet path

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

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

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

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.