[][src]Struct itui::widgets::List

pub struct List<'b, L, MSG> where
    L: Iterator<Item = Text<'b>>, 
{ pub events: Vec<Attribute<Event, MSG>>, // some fields omitted }

Fields

events: Vec<Attribute<Event, MSG>>

events attached to this block

Methods

impl<'b, L, MSG> List<'b, L, MSG> where
    L: Iterator<Item = Text<'b>>, 
[src]

pub fn new(items: L) -> Self[src]

pub fn block(self, block: Block<'b, MSG>) -> Self[src]

pub fn items<I>(self, items: I) -> Self where
    I: IntoIterator<Item = Text<'b>, IntoIter = L>, 
[src]

pub fn style(self, style: Style) -> Self[src]

pub fn start_corner(self, corner: Corner) -> Self[src]

pub fn area(self, area: Rect) -> Self[src]

Trait Implementations

impl<'b, L, MSG> Widget for List<'b, L, MSG> where
    L: Iterator<Item = Text<'b>>,
    MSG: 'static, 
[src]

fn background(&self, buf: &mut Buffer, color: Color)[src]

Helper method to quickly set the background of all cells inside the specified area.

fn render<B>(&mut self, f: &mut Frame<B>) where
    Self: Sized,
    B: Backend
[src]

Helper method that can be chained with a widget's builder methods to render it.

fn top(&self) -> u16[src]

fn bottom(&self) -> u16[src]

fn left(&self) -> u16[src]

fn right(&self) -> u16[src]

impl<'b, L, MSG> Default for List<'b, L, MSG> where
    L: Iterator<Item = Text<'b>> + Default
[src]

Auto Trait Implementations

impl<'b, L, MSG> !Sync for List<'b, L, MSG>

impl<'b, L, MSG> !Send for List<'b, L, MSG>

impl<'b, L, MSG> Unpin for List<'b, L, MSG> where
    L: Unpin

impl<'b, L, MSG> !RefUnwindSafe for List<'b, L, MSG>

impl<'b, L, MSG> !UnwindSafe for List<'b, L, MSG>

Blanket Implementations

impl<T> From<T> for T[src]

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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