pub struct ContactCreateData {
pub id: StringValue<'static>,
pub created_at: DateTime<Utc>,
}Expand description
Type that represents the <creData> tag for contact create response
Fields§
§id: StringValue<'static>The contact id
created_at: DateTime<Utc>The contact creation date
Trait Implementations§
Source§impl Debug for ContactCreateData
impl Debug for ContactCreateData
Source§impl<'de> Deserialize<'de> for ContactCreateData
impl<'de> Deserialize<'de> for ContactCreateData
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 ContactCreateData
impl RefUnwindSafe for ContactCreateData
impl Send for ContactCreateData
impl Sync for ContactCreateData
impl Unpin for ContactCreateData
impl UnwindSafe for ContactCreateData
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