Struct Chart

Source
pub struct Chart { /* private fields */ }

Implementations§

Source§

impl Chart

Source

pub const LANG_EN_GB: &'static str = "en_GB"

Source

pub const LANG_JA_JP: &'static str = "ja-JP"

Source

pub fn get_title(&self) -> Option<&Title>

Source

pub fn get_title_mut(&mut self) -> Option<&mut Title>

Source

pub fn set_title(&mut self, value: Title) -> &mut Self

Source

pub fn get_auto_title_deleted(&self) -> &AutoTitleDeleted

Source

pub fn get_auto_title_deleted_mut(&mut self) -> &mut AutoTitleDeleted

Source

pub fn set_auto_title_deleted(&mut self, value: AutoTitleDeleted) -> &mut Self

Source

pub fn get_view_3d(&self) -> Option<&View3D>

Source

pub fn get_view_3d_mut(&mut self) -> Option<&mut View3D>

Source

pub fn set_view_3d(&mut self, value: View3D) -> &mut Self

Source

pub fn get_floor(&self) -> Option<&Floor>

Source

pub fn get_floor_mut(&mut self) -> Option<&mut Floor>

Source

pub fn set_floor(&mut self, value: Floor) -> &mut Self

Source

pub fn get_side_wall(&self) -> Option<&SideWall>

Source

pub fn get_side_wall_mut(&mut self) -> Option<&mut SideWall>

Source

pub fn set_side_wall(&mut self, value: SideWall) -> &mut Self

Source

pub fn get_back_wall(&self) -> Option<&BackWall>

Source

pub fn get_back_wall_mut(&mut self) -> Option<&mut BackWall>

Source

pub fn set_back_wall(&mut self, value: BackWall) -> &mut Self

Source

pub fn get_plot_area(&self) -> &PlotArea

Source

pub fn get_plot_area_mut(&mut self) -> &mut PlotArea

Source

pub fn set_plot_area(&mut self, value: PlotArea) -> &mut Self

Source

pub fn get_legend(&self) -> &Legend

Source

pub fn get_legend_mut(&mut self) -> &mut Legend

Source

pub fn set_legend(&mut self, value: Legend) -> &mut Self

Source

pub fn get_plot_visible_only(&self) -> &PlotVisibleOnly

Source

pub fn get_plot_visible_only_mut(&mut self) -> &mut PlotVisibleOnly

Source

pub fn set_plot_visible_only(&mut self, value: PlotVisibleOnly) -> &mut Self

Source

pub fn get_display_blanks_as(&self) -> &DisplayBlanksAs

Source

pub fn get_display_blanks_as_mut(&mut self) -> &mut DisplayBlanksAs

Source

pub fn set_display_blanks_as(&mut self, value: DisplayBlanksAs) -> &mut Self

Source

pub fn get_show_data_labels_over_maximum(&self) -> &ShowDataLabelsOverMaximum

Source

pub fn get_show_data_labels_over_maximum_mut( &mut self, ) -> &mut ShowDataLabelsOverMaximum

Source

pub fn set_show_data_labels_over_maximum( &mut self, value: ShowDataLabelsOverMaximum, ) -> &mut Chart

Source

pub fn get_formula_mut(&mut self) -> Vec<&mut Formula>

Trait Implementations§

Source§

impl Clone for Chart

Source§

fn clone(&self) -> Chart

Returns a duplicate 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 Chart

Source§

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

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

impl Default for Chart

Source§

fn default() -> Chart

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl Freeze for Chart

§

impl RefUnwindSafe for Chart

§

impl Send for Chart

§

impl Sync for Chart

§

impl Unpin for Chart

§

impl UnwindSafe for Chart

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

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> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.