[][src]Struct prototty_menu::MenuInstanceView

pub struct MenuInstanceView<E> {
    pub entry_view: E,
    // some fields omitted
}

Fields

entry_view: E

Methods

impl<E> MenuInstanceView<E>[src]

pub fn new(entry_view: E) -> Self[src]

Trait Implementations

impl<E> MenuIndexFromScreenCoord for MenuInstanceView<E>[src]

impl<'a, T, E> View<&'a MenuInstance<T>> for MenuInstanceView<E> where
    E: MenuEntryView<T>, 
[src]

fn visible_bounds<R>(&mut self, data: T, context: ViewContext<R>) -> Size where
    R: ViewTransformRgb24
[src]

Return the size of the visible component of the element without rendering it. By default this is the current context size. Read more

fn view_reporting_intended_size<G, R>(
    &mut self,
    data: T,
    context: ViewContext<R>,
    grid: &mut G
) -> Size where
    G: ViewGrid,
    R: ViewTransformRgb24
[src]

Render an element and return the size that the element, regardless of the size of the visible component of the element. This allows decorators to know the size of the output of a view they are decorating. By default this calls view keeping track of the maximum x and y components of the relative coords of cells which are set in grid. Read more

impl<'a, L, T, E> View<(&'a MenuInstance<T>, &'a L)> for MenuInstanceView<E> where
    E: MenuEntryLookupView<T, L>, 
[src]

fn visible_bounds<R>(&mut self, data: T, context: ViewContext<R>) -> Size where
    R: ViewTransformRgb24
[src]

Return the size of the visible component of the element without rendering it. By default this is the current context size. Read more

fn view_reporting_intended_size<G, R>(
    &mut self,
    data: T,
    context: ViewContext<R>,
    grid: &mut G
) -> Size where
    G: ViewGrid,
    R: ViewTransformRgb24
[src]

Render an element and return the size that the element, regardless of the size of the visible component of the element. This allows decorators to know the size of the output of a view they are decorating. By default this calls view keeping track of the maximum x and y components of the relative coords of cells which are set in grid. Read more

Auto Trait Implementations

impl<E> Send for MenuInstanceView<E> where
    E: Send

impl<E> Sync for MenuInstanceView<E> where
    E: Sync

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 = Infallible

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

The type returned in the event of a conversion error.