pub struct ContactList {
pub contact_list_name: String,
pub description: Option<String>,
pub topics: Vec<Topic>,
pub created_at: DateTime<Utc>,
pub last_updated_at: DateTime<Utc>,
}Fields§
§contact_list_name: String§description: Option<String>§topics: Vec<Topic>§created_at: DateTime<Utc>§last_updated_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for ContactList
impl Clone for ContactList
Source§fn clone(&self) -> ContactList
fn clone(&self) -> ContactList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ContactList
impl Debug for ContactList
Source§impl<'de> Deserialize<'de> for ContactList
impl<'de> Deserialize<'de> for ContactList
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 ContactList
impl RefUnwindSafe for ContactList
impl Send for ContactList
impl Sync for ContactList
impl Unpin for ContactList
impl UnsafeUnpin for ContactList
impl UnwindSafe for ContactList
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