[][src]Trait raui_core::props::PropsData

pub trait PropsData: Any {
    pub fn clone_props(&self) -> Box<dyn PropsData>;
pub fn as_any(&self) -> &dyn Any; }

Required methods

pub fn clone_props(&self) -> Box<dyn PropsData>[src]

pub fn as_any(&self) -> &dyn Any[src]

Loading content...

Implementations on Foreign Types

impl PropsData for () where
    Self: Clone
[src]

impl PropsData for i8 where
    Self: Clone
[src]

impl PropsData for i16 where
    Self: Clone
[src]

impl PropsData for i32 where
    Self: Clone
[src]

impl PropsData for i64 where
    Self: Clone
[src]

impl PropsData for i128 where
    Self: Clone
[src]

impl PropsData for u8 where
    Self: Clone
[src]

impl PropsData for u16 where
    Self: Clone
[src]

impl PropsData for u32 where
    Self: Clone
[src]

impl PropsData for u64 where
    Self: Clone
[src]

impl PropsData for u128 where
    Self: Clone
[src]

impl PropsData for f32 where
    Self: Clone
[src]

impl PropsData for f64 where
    Self: Clone
[src]

impl PropsData for bool where
    Self: Clone
[src]

impl PropsData for String where
    Self: Clone
[src]

impl<T> PropsData for Option<T> where
    T: PropsData + Clone
[src]

impl<T, E> PropsData for Result<T, E> where
    T: PropsData + Clone,
    E: 'static + Clone
[src]

impl<T> PropsData for Cow<'static, T> where
    T: PropsData + Clone
[src]

Loading content...

Implementors

Loading content...