[][src]Trait raui::prelude::PropsData

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

Required methods

pub fn clone_props(&self) -> Box<dyn PropsData + 'static, Global>[src]

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

Loading content...

Implementations on Foreign Types

impl PropsData for i64 where
    i64: Clone
[src]

impl PropsData for i8 where
    i8: Clone
[src]

impl PropsData for i128 where
    i128: Clone
[src]

impl PropsData for u16 where
    u16: Clone
[src]

impl PropsData for u128 where
    u128: Clone
[src]

impl PropsData for u32 where
    u32: Clone
[src]

impl PropsData for String where
    String: Clone
[src]

impl PropsData for f64 where
    f64: Clone
[src]

impl PropsData for u64 where
    u64: Clone
[src]

impl PropsData for i16 where
    i16: Clone
[src]

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

impl PropsData for i32 where
    i32: Clone
[src]

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

impl PropsData for u8 where
    u8: Clone
[src]

impl PropsData for bool where
    bool: Clone
[src]

impl PropsData for f32 where
    f32: Clone
[src]

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

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

Loading content...

Implementors

Loading content...