[−][src]Struct cursive_core::views::BoxedView
A boxed View.
It derefs to the wrapped view.
Implementations
impl BoxedView[src]
pub fn new(view: Box<dyn View>) -> Self[src]
Creates a new BoxedView around the given boxed view.
pub fn boxed<T>(view: T) -> Self where
T: IntoBoxedView, [src]
T: IntoBoxedView,
Box the given view
pub fn unwrap(self) -> Box<dyn View>[src]
Returns the inner boxed view.
Methods from Deref<Target = dyn View>
pub fn downcast_ref<T: Any>(&self) -> Option<&T>[src]
Attempts to downcast self to a concrete type.
pub fn downcast_mut<T: Any>(&mut self) -> Option<&mut T>[src]
Attempts to downcast self to a concrete type.
pub fn is<T: Any>(&self) -> bool[src]
Checks if this view is of type T.
Trait Implementations
impl Deref for BoxedView[src]
impl DerefMut for BoxedView[src]
impl ViewWrapper for BoxedView[src]
type V = dyn View
Type that this view wraps.
pub fn with_view<F, R>(&self, f: F) -> Option<R> where
F: FnOnce(&Self::V) -> R, [src]
F: FnOnce(&Self::V) -> R,
pub fn with_view_mut<F, R>(&mut self, f: F) -> Option<R> where
F: FnOnce(&mut Self::V) -> R, [src]
F: FnOnce(&mut Self::V) -> R,
pub fn into_inner(self) -> Result<Self::V, Self> where
Self: Sized,
Self::V: Sized, [src]
Self: Sized,
Self::V: Sized,
pub fn wrap_draw(&self, printer: &Printer<'_, '_>)[src]
pub fn wrap_required_size(&mut self, req: Vec2) -> Vec2[src]
pub fn wrap_on_event(&mut self, ch: Event) -> EventResult[src]
pub fn wrap_layout(&mut self, size: Vec2)[src]
pub fn wrap_take_focus(&mut self, source: Direction) -> bool[src]
pub fn wrap_call_on_any<'a>(
&mut self,
selector: &Selector<'_>,
callback: AnyCb<'a>
)[src]
&mut self,
selector: &Selector<'_>,
callback: AnyCb<'a>
)
pub fn wrap_focus_view(
&mut self,
selector: &Selector<'_>
) -> Result<(), ViewNotFound>[src]
&mut self,
selector: &Selector<'_>
) -> Result<(), ViewNotFound>
pub fn wrap_needs_relayout(&self) -> bool[src]
pub fn wrap_important_area(&self, size: Vec2) -> Rect[src]
Auto Trait Implementations
impl !RefUnwindSafe for BoxedView[src]
impl !Send for BoxedView[src]
impl !Sync for BoxedView[src]
impl Unpin for BoxedView[src]
impl !UnwindSafe for BoxedView[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Erased for T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,