Struct embedded_plots::axis::DrawableAxis[][src]

pub struct DrawableAxis<'a, C, F> where
    C: PixelColor,
    F: Font,
    TextStyle<C, F>: Clone + Default
{ /* fields omitted */ }

Implementations

impl<'a, C, F> DrawableAxis<'a, C, F> where
    C: PixelColor + Default,
    F: Font,
    TextStyle<C, F>: Clone + Default
[src]

pub fn set_color(self, val: C) -> DrawableAxis<'a, C, F>[src]

pub fn set_text_style(self, val: TextStyle<C, F>) -> DrawableAxis<'a, C, F>[src]

pub fn set_tick_size(self, val: usize) -> DrawableAxis<'a, C, F>[src]

pub fn set_thickness(self, val: usize) -> DrawableAxis<'a, C, F>[src]

Trait Implementations

impl<'a, C, F> Drawable<C> for DrawableAxis<'a, C, F> where
    C: PixelColor + Default,
    F: Font + Copy,
    TextStyle<C, F>: Clone + Default
[src]

Auto Trait Implementations

impl<'a, C, F> RefUnwindSafe for DrawableAxis<'a, C, F> where
    C: RefUnwindSafe,
    F: RefUnwindSafe

impl<'a, C, F> Send for DrawableAxis<'a, C, F> where
    C: Send,
    F: Send

impl<'a, C, F> Sync for DrawableAxis<'a, C, F> where
    C: Sync,
    F: Sync

impl<'a, C, F> Unpin for DrawableAxis<'a, C, F> where
    C: Unpin,
    F: Unpin

impl<'a, C, F> UnwindSafe for DrawableAxis<'a, C, F> where
    C: UnwindSafe,
    F: UnwindSafe

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

type Output = T

Should always be Self

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.