AreaObj

Trait AreaObj 

Source
pub trait AreaObj: SubDescType + Clone {
    type Inner;

    // Required methods
    fn from_type_less(value: Option<Area>) -> BuckyResult<Self>;
    fn area_ref(&self) -> &Option<Area>;
    fn from_inner(inner: Self::Inner) -> Self;
}

Required Associated Types§

Required Methods§

Source

fn from_type_less(value: Option<Area>) -> BuckyResult<Self>

Source

fn area_ref(&self) -> &Option<Area>

Source

fn from_inner(inner: Self::Inner) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl AreaObj for Option<Area>

Source§

type Inner = Area

Source§

fn from_type_less(value: Option<Area>) -> BuckyResult<Self>

Source§

fn area_ref(&self) -> &Option<Area>

Source§

fn from_inner(inner: Self::Inner) -> Self

Implementors§