[][src]Struct google_sheets4::BasicChartAxis

pub struct BasicChartAxis {
    pub format: Option<TextFormat>,
    pub position: Option<String>,
    pub view_window_options: Option<ChartAxisViewWindowOptions>,
    pub title: Option<String>,
    pub title_text_position: Option<TextPosition>,
}

An axis of the chart. A chart may not have more than one axis per axis position.

This type is not used in any activity, and only used as part of another schema.

Fields

format: Option<TextFormat>

The format of the title. Only valid if the axis is not associated with the domain.

position: Option<String>

The position of this axis.

view_window_options: Option<ChartAxisViewWindowOptions>

The view window options for this axis.

title: Option<String>

The title of this axis. If set, this overrides any title inferred from headers of the data.

title_text_position: Option<TextPosition>

The axis title text position.

Trait Implementations

impl Clone for BasicChartAxis[src]

impl Debug for BasicChartAxis[src]

impl Default for BasicChartAxis[src]

impl<'de> Deserialize<'de> for BasicChartAxis[src]

impl Part for BasicChartAxis[src]

impl Serialize for BasicChartAxis[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<T> Typeable for T where
    T: Any