[][src]Struct liriodendron::log::tools::brush::brushcolor::BrushColor

pub struct BrushColor {
    cursor: Cursor,
}

Represents a customizable and usable color with brush tool

Fields

cursor: Cursor

Methods

impl BrushColor[src]

pub fn new() -> BrushColor[src]

pub fn get_value(&self) -> (String, String, String)[src]

Methods from Deref<Target = Cursor>

pub fn get_pos(&self) -> usize[src]

pub fn cursor_is_blinking(&self) -> bool[src]

pub fn reset_cursor(&mut self)[src]

pub fn cursor_left(&mut self)[src]

pub fn cursor_right(&mut self)[src]

Trait Implementations

impl Deref for BrushColor[src]

Tips to use shared functions between Setter sub-structs

type Target = Cursor

The resulting type after dereferencing.

impl DerefMut for BrushColor[src]

Tips to use shared functions between Setter sub-structs

impl Setter for BrushColor[src]

fn set_value(&mut self, number: char)[src]

Checks value and set it

Auto Trait Implementations

impl RefUnwindSafe for BrushColor

impl Send for BrushColor

impl Sync for BrushColor

impl Unpin for BrushColor

impl UnwindSafe for BrushColor

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

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<V, T> VZip<V> for T where
    V: MultiLane<T>,