Trait cursive::view::AnyView [] [src]

pub trait AnyView: View {
    fn as_any(&self) -> &Any;
fn as_any_mut(&mut self) -> &mut Any; }

A view that can be downcasted to its concrete type.

Required Methods

Downcast self to a Any.

Downcast self to a mutable Any.

Implementors