[][src]Struct meli::components::utilities::Tabbed

pub struct Tabbed {
    pinned: usize,
    children: Vec<Box<dyn Component>>,
    cursor_pos: usize,
    show_shortcuts: bool,
    help_screen_cursor: (usize, usize),
    help_content: CellBuffer,
    help_curr_views: ShortcutMaps,
    help_search: Option<SearchPattern>,
    theme_default: ThemeAttribute,
    dirty: bool,
    id: ComponentId,
}

Fields

pinned: usizechildren: Vec<Box<dyn Component>>cursor_pos: usizeshow_shortcuts: boolhelp_screen_cursor: (usize, usize)help_content: CellBufferhelp_curr_views: ShortcutMapshelp_search: Option<SearchPattern>theme_default: ThemeAttributedirty: boolid: ComponentId

Implementations

impl Tabbed[src]

pub fn new(children: Vec<Box<dyn Component>>, context: &Context) -> Self[src]

fn draw_tabs(
    &mut self,
    grid: &mut CellBuffer,
    area: Area,
    context: &mut Context
)
[src]

pub fn add_component(&mut self, new: Box<dyn Component>)[src]

Trait Implementations

impl Component for Tabbed[src]

impl Debug for Tabbed[src]

impl Display for Tabbed[src]

Auto Trait Implementations

impl !RefUnwindSafe for Tabbed

impl Send for Tabbed

impl Sync for Tabbed

impl Unpin for Tabbed

impl !UnwindSafe for Tabbed

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> Instrument for T[src]

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

impl<T> ToString for T where
    T: Display + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]