[][src]Struct termit_ui::widget::Canvas

pub struct Canvas {
    pub background: Option<Color>,
    pub foreground: Option<Color>,
    pub drawings: Vec<Drawing>,
    pub elements: ElementaryWidget,
}

Fields

background: Option<Color>foreground: Option<Color>drawings: Vec<Drawing>elements: ElementaryWidget

Methods

impl Canvas[src]

pub fn new() -> Canvas[src]

pub fn set_layout<L: Layout + 'static>(self, layout: L) -> Self[src]

pub fn add_element<E: LayoutElement + 'static, I: IntoLayoutElement<E>>(
    self,
    item: I
) -> Self
[src]

pub fn set_color(
    self,
    foreground: Option<Color>,
    background: Option<Color>
) -> Self
[src]

pub fn add_drawing(self, drawing: Drawing) -> Self[src]

Trait Implementations

impl Widget for Canvas[src]

fn captures(&self, window: Window, point: Point) -> bool[src]

impl Default for Canvas[src]

Auto Trait Implementations

impl !Send for Canvas

impl !Sync for Canvas

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.