#[repr(C)]
pub struct lxw_chart {
Show 63 fields pub file: *mut FILE, pub type_: u8, pub subtype: u8, pub series_index: u16, pub write_chart_type: Option<unsafe extern "C" fn(arg1: *mut lxw_chart)>, pub write_plot_area: Option<unsafe extern "C" fn(arg1: *mut lxw_chart)>, pub x_axis: *mut lxw_chart_axis, pub y_axis: *mut lxw_chart_axis, pub title: lxw_chart_title, pub id: u32, pub axis_id_1: u32, pub axis_id_2: u32, pub axis_id_3: u32, pub axis_id_4: u32, pub in_use: u8, pub chart_group: u8, pub cat_has_num_fmt: u8, pub is_chartsheet: u8, pub has_horiz_cat_axis: u8, pub has_horiz_val_axis: u8, pub style_id: u8, pub rotation: u16, pub hole_size: u16, pub no_title: u8, pub has_overlap: u8, pub overlap_y1: i8, pub overlap_y2: i8, pub gap_y1: u16, pub gap_y2: u16, pub grouping: u8, pub default_cross_between: u8, pub legend: lxw_chart_legend, pub delete_series: *mut i16, pub delete_series_count: u16, pub default_marker: *mut lxw_chart_marker, pub chartarea_line: *mut lxw_chart_line, pub chartarea_fill: *mut lxw_chart_fill, pub chartarea_pattern: *mut lxw_chart_pattern, pub plotarea_line: *mut lxw_chart_line, pub plotarea_fill: *mut lxw_chart_fill, pub plotarea_pattern: *mut lxw_chart_pattern, pub has_drop_lines: u8, pub drop_lines_line: *mut lxw_chart_line, pub has_high_low_lines: u8, pub high_low_lines_line: *mut lxw_chart_line, pub series_list: *mut lxw_chart_series_list, pub has_table: u8, pub has_table_vertical: u8, pub has_table_horizontal: u8, pub has_table_outline: u8, pub has_table_legend_keys: u8, pub table_font: *mut lxw_chart_font, pub show_blanks_as: u8, pub show_hidden_data: u8, pub has_up_down_bars: u8, pub up_bar_line: *mut lxw_chart_line, pub down_bar_line: *mut lxw_chart_line, pub up_bar_fill: *mut lxw_chart_fill, pub down_bar_fill: *mut lxw_chart_fill, pub default_label_position: u8, pub is_protected: u8, pub ordered_list_pointers: lxw_chart__bindgen_ty_1, pub list_pointers: lxw_chart__bindgen_ty_2,
}

Fields§

§file: *mut FILE§type_: u8§subtype: u8§series_index: u16§write_chart_type: Option<unsafe extern "C" fn(arg1: *mut lxw_chart)>§write_plot_area: Option<unsafe extern "C" fn(arg1: *mut lxw_chart)>§x_axis: *mut lxw_chart_axis§y_axis: *mut lxw_chart_axis§title: lxw_chart_title§id: u32§axis_id_1: u32§axis_id_2: u32§axis_id_3: u32§axis_id_4: u32§in_use: u8§chart_group: u8§cat_has_num_fmt: u8§is_chartsheet: u8§has_horiz_cat_axis: u8§has_horiz_val_axis: u8§style_id: u8§rotation: u16§hole_size: u16§no_title: u8§has_overlap: u8§overlap_y1: i8§overlap_y2: i8§gap_y1: u16§gap_y2: u16§grouping: u8§default_cross_between: u8§legend: lxw_chart_legend§delete_series: *mut i16§delete_series_count: u16§default_marker: *mut lxw_chart_marker§chartarea_line: *mut lxw_chart_line§chartarea_fill: *mut lxw_chart_fill§chartarea_pattern: *mut lxw_chart_pattern§plotarea_line: *mut lxw_chart_line§plotarea_fill: *mut lxw_chart_fill§plotarea_pattern: *mut lxw_chart_pattern§has_drop_lines: u8§drop_lines_line: *mut lxw_chart_line§has_high_low_lines: u8§high_low_lines_line: *mut lxw_chart_line§series_list: *mut lxw_chart_series_list§has_table: u8§has_table_vertical: u8§has_table_horizontal: u8§has_table_outline: u8§has_table_legend_keys: u8§table_font: *mut lxw_chart_font§show_blanks_as: u8§show_hidden_data: u8§has_up_down_bars: u8§up_bar_line: *mut lxw_chart_line§down_bar_line: *mut lxw_chart_line§up_bar_fill: *mut lxw_chart_fill§down_bar_fill: *mut lxw_chart_fill§default_label_position: u8§is_protected: u8§ordered_list_pointers: lxw_chart__bindgen_ty_1§list_pointers: lxw_chart__bindgen_ty_2

Trait Implementations§

source§

impl Clone for lxw_chart

source§

fn clone(&self) -> lxw_chart

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_chart

source§

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

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

impl Copy for lxw_chart

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.