pub trait AreaObj: SubDescType + Clone {
    type Inner;

    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

Implementations on Foreign Types

Implementors