pub struct CollectionSummary {
pub id: String,
pub name: String,
pub description: Option<String>,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: String§name: String§description: Option<String>§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for CollectionSummary
impl Clone for CollectionSummary
Source§fn clone(&self) -> CollectionSummary
fn clone(&self) -> CollectionSummary
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CollectionSummary
impl Debug for CollectionSummary
Source§impl<'de> Deserialize<'de> for CollectionSummary
impl<'de> Deserialize<'de> for CollectionSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CollectionSummary
impl RefUnwindSafe for CollectionSummary
impl Send for CollectionSummary
impl Sync for CollectionSummary
impl Unpin for CollectionSummary
impl UnsafeUnpin for CollectionSummary
impl UnwindSafe for CollectionSummary
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more