#[repr(C)]
pub struct lxw_workbook {
Show 46 fields pub file: *mut FILE, pub sheets: *mut lxw_sheets, pub worksheets: *mut lxw_worksheets, pub chartsheets: *mut lxw_chartsheets, pub worksheet_names: *mut lxw_worksheet_names, pub chartsheet_names: *mut lxw_chartsheet_names, pub image_md5s: *mut lxw_image_md5s, pub header_image_md5s: *mut lxw_image_md5s, pub background_md5s: *mut lxw_image_md5s, pub charts: *mut lxw_charts, pub ordered_charts: *mut lxw_charts, pub formats: *mut lxw_formats, pub defined_names: *mut lxw_defined_names, pub sst: *mut lxw_sst, pub properties: *mut lxw_doc_properties, pub custom_properties: *mut lxw_custom_properties, pub filename: *mut c_char, pub options: lxw_workbook_options, pub num_sheets: u16, pub num_worksheets: u16, pub num_chartsheets: u16, pub first_sheet: u16, pub active_sheet: u16, pub num_xf_formats: u16, pub num_dxf_formats: u16, pub num_format_count: u16, pub drawing_count: u16, pub comment_count: u16, pub font_count: u16, pub border_count: u16, pub fill_count: u16, pub optimize: u8, pub max_url_length: u16, pub read_only: u8, pub has_png: u8, pub has_jpeg: u8, pub has_bmp: u8, pub has_gif: u8, pub has_vml: u8, pub has_comments: u8, pub has_metadata: u8, pub used_xf_formats: *mut lxw_hash_table, pub used_dxf_formats: *mut lxw_hash_table, pub vba_project: *mut c_char, pub vba_codename: *mut c_char, pub default_url_format: *mut lxw_format,
}

Fields§

§file: *mut FILE§sheets: *mut lxw_sheets§worksheets: *mut lxw_worksheets§chartsheets: *mut lxw_chartsheets§worksheet_names: *mut lxw_worksheet_names§chartsheet_names: *mut lxw_chartsheet_names§image_md5s: *mut lxw_image_md5s§header_image_md5s: *mut lxw_image_md5s§background_md5s: *mut lxw_image_md5s§charts: *mut lxw_charts§ordered_charts: *mut lxw_charts§formats: *mut lxw_formats§defined_names: *mut lxw_defined_names§sst: *mut lxw_sst§properties: *mut lxw_doc_properties§custom_properties: *mut lxw_custom_properties§filename: *mut c_char§options: lxw_workbook_options§num_sheets: u16§num_worksheets: u16§num_chartsheets: u16§first_sheet: u16§active_sheet: u16§num_xf_formats: u16§num_dxf_formats: u16§num_format_count: u16§drawing_count: u16§comment_count: u16§font_count: u16§border_count: u16§fill_count: u16§optimize: u8§max_url_length: u16§read_only: u8§has_png: u8§has_jpeg: u8§has_bmp: u8§has_gif: u8§has_vml: u8§has_comments: u8§has_metadata: u8§used_xf_formats: *mut lxw_hash_table§used_dxf_formats: *mut lxw_hash_table§vba_project: *mut c_char§vba_codename: *mut c_char§default_url_format: *mut lxw_format

Trait Implementations§

source§

impl Clone for lxw_workbook

source§

fn clone(&self) -> lxw_workbook

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for lxw_workbook

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for lxw_workbook

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.