Struct tui::widgets::Axis[][src]

pub struct Axis<'a> { /* fields omitted */ }

An X or Y axis for the chart widget

Implementations

impl<'a> Axis<'a>[src]

pub fn title<T>(self, title: T) -> Axis<'a> where
    T: Into<Spans<'a>>, 
[src]

pub fn title_style(self, style: Style) -> Axis<'a>[src]

👎 Deprecated since 0.10.0:

You should use styling capabilities of text::Spans given as argument of the title method to apply styling to the title.

pub fn bounds(self, bounds: [f64; 2]) -> Axis<'a>[src]

pub fn labels(self, labels: Vec<Span<'a>>) -> Axis<'a>[src]

pub fn style(self, style: Style) -> Axis<'a>[src]

Trait Implementations

impl<'a> Clone for Axis<'a>[src]

impl<'a> Debug for Axis<'a>[src]

impl<'a> Default for Axis<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Axis<'a>

impl<'a> Send for Axis<'a>

impl<'a> Sync for Axis<'a>

impl<'a> Unpin for Axis<'a>

impl<'a> UnwindSafe for Axis<'a>

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> 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.