[][src]Struct ooxml::document::SpreadsheetDocument

pub struct SpreadsheetDocument { /* fields omitted */ }

Implementations

impl SpreadsheetDocument[src]

Parse or create new spreadsheet document.

use ooxml::document::SpreadsheetDocument;
fn main() {
    let xlsx = SpreadsheetDocument::open("examples/simple-spreadsheet/data-image-demo.xlsx")
        .expect("open excel file");
    let workbook = xlsx.get_workbook();
    println!("{:?}", workbook);
}

pub fn create(document_type: SpreadsheetDocumentType) -> Self[src]

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

Open existing spreadsheet file and parse.

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

Save as new file with path.

pub fn add_workbook(&mut self) -> Workbook[src]

pub fn flush(&self)[src]

Serialize all parts to package.

pub fn get_workbook(&self) -> &Workbook[src]

Get workbook

pub fn get_workbook_mut(&mut self) -> &mut Workbook[src]

Get workbook

Trait Implementations

impl Debug for SpreadsheetDocument[src]

impl Default for SpreadsheetDocument[src]

Auto Trait Implementations

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.