[][src]Struct liriodendron::userinterface::widgets::cursor::CursorWidget

pub struct CursorWidget {
    pos: u16,
    is_blinking: bool,
}

Widget to render a blinking cursor

Fields

pos: u16is_blinking: bool

Methods

impl CursorWidget[src]

pub fn new((pos, is_blinking): (u16, bool)) -> CursorWidget[src]

Trait Implementations

impl Widget for CursorWidget[src]

Auto Trait Implementations

impl RefUnwindSafe for CursorWidget

impl Send for CursorWidget

impl Sync for CursorWidget

impl Unpin for CursorWidget

impl UnwindSafe for CursorWidget

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