pub trait AuthorObj: SubDescType + Clone {
    type Inner;

    fn from_type_less(value: Option<ObjectId>) -> BuckyResult<Self>;
    fn from_inner(inner: Self::Inner) -> Self;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors