pub struct CollectionRecord {
pub id: String,
pub name: String,
pub description: Option<String>,
pub graph: GraphData,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: String§name: String§description: Option<String>§graph: GraphData§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for CollectionRecord
impl Clone for CollectionRecord
Source§fn clone(&self) -> CollectionRecord
fn clone(&self) -> CollectionRecord
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 CollectionRecord
impl Debug for CollectionRecord
Source§impl<'de> Deserialize<'de> for CollectionRecord
impl<'de> Deserialize<'de> for CollectionRecord
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 CollectionRecord
impl RefUnwindSafe for CollectionRecord
impl Send for CollectionRecord
impl Sync for CollectionRecord
impl Unpin for CollectionRecord
impl UnsafeUnpin for CollectionRecord
impl UnwindSafe for CollectionRecord
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