[][src]Struct cursive::views::IdView

pub struct IdView<V: View> { /* fields omitted */ }

Wrapper around a view to provide interior mutability.

Methods

impl<V: View> IdView<V>[src]

pub fn new<S: Into<String>>(id: S, view: V) -> Self[src]

Wraps view in a new IdView.

pub fn get_mut(&mut self) -> ViewRef<V>[src]

Gets mutable access to the inner view.

This returns a ViewRef<V>, which implement DerefMut<Target = V>.

Panics

Panics if another reference for this view already exists.

Trait Implementations

impl<T: View + 'static> ViewWrapper for IdView<T>[src]

type V = T

Type that this view wraps.

fn wrap_draw(&self, printer: &Printer)[src]

Wraps the draw method.

fn wrap_required_size(&mut self, req: Vec2) -> Vec2[src]

Wraps the required_size method.

fn wrap_on_event(&mut self, ch: Event) -> EventResult[src]

Wraps the on_event method.

fn wrap_layout(&mut self, size: Vec2)[src]

Wraps the layout method.

fn wrap_take_focus(&mut self, source: Direction) -> bool[src]

Wraps the take_focus method.

fn wrap_needs_relayout(&self) -> bool[src]

Wraps the needs_relayout method.

fn wrap_important_area(&self, size: Vec2) -> Rect[src]

Wraps the important_area method.

Auto Trait Implementations

impl<V> !Send for IdView<V>

impl<V> !Sync for IdView<V>

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

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

impl<T> Erased for T[src]