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 · 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
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