2018-03-14 22:11:27 +00:00
|
|
|
use std::any::Any;
|
2019-02-28 23:54:12 +00:00
|
|
|
use crate::view::View;
|
2018-03-14 22:11:27 +00:00
|
|
|
|
|
|
|
/// A view that can be downcasted to its concrete type.
|
|
|
|
///
|
|
|
|
/// This trait is automatically implemented for any `T: View`.
|
|
|
|
pub trait AnyView {
|
|
|
|
/// Downcast self to a `Any`.
|
2019-02-28 23:55:02 +00:00
|
|
|
fn as_any(&self) -> &dyn Any;
|
2018-03-14 22:11:27 +00:00
|
|
|
|
|
|
|
/// Downcast self to a mutable `Any`.
|
2019-02-28 23:55:02 +00:00
|
|
|
fn as_any_mut(&mut self) -> &mut dyn Any;
|
2018-03-14 22:11:27 +00:00
|
|
|
|
|
|
|
/// Returns a boxed any from a boxed self.
|
|
|
|
///
|
|
|
|
/// Can be used before `Box::downcast()`.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use cursive::views::TextView;
|
|
|
|
/// # use cursive::view::View;
|
|
|
|
/// # fn main() {
|
|
|
|
/// let boxed: Box<View> = Box::new(TextView::new("text"));
|
|
|
|
/// let text: Box<TextView> = boxed.as_boxed_any().downcast().unwrap();
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2019-02-28 23:55:02 +00:00
|
|
|
fn as_boxed_any(self: Box<Self>) -> Box<dyn Any>;
|
2018-03-14 22:11:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: View> AnyView for T {
|
|
|
|
/// Downcast self to a `Any`.
|
2019-02-28 23:55:02 +00:00
|
|
|
fn as_any(&self) -> &dyn Any {
|
2018-03-14 22:11:27 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Downcast self to a mutable `Any`.
|
2019-02-28 23:55:02 +00:00
|
|
|
fn as_any_mut(&mut self) -> &mut dyn Any {
|
2018-03-14 22:11:27 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2019-02-28 23:55:02 +00:00
|
|
|
fn as_boxed_any(self: Box<Self>) -> Box<dyn Any> {
|
2018-03-14 22:11:27 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|