pub struct UnsubscribeEntry {
pub id: String,
pub email: String,
pub list_id: Option<String>,
pub reason: Option<String>,
pub created_at: String,
}Expand description
One unsubscribe record.
Fields§
§id: StringRow id.
email: StringEmail.
list_id: Option<String>List id (may be null = global).
reason: Option<String>Reason.
created_at: StringCreated timestamp.
Trait Implementations§
Source§impl Clone for UnsubscribeEntry
impl Clone for UnsubscribeEntry
Source§fn clone(&self) -> UnsubscribeEntry
fn clone(&self) -> UnsubscribeEntry
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 UnsubscribeEntry
impl Debug for UnsubscribeEntry
Source§impl<'de> Deserialize<'de> for UnsubscribeEntry
impl<'de> Deserialize<'de> for UnsubscribeEntry
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 UnsubscribeEntry
impl RefUnwindSafe for UnsubscribeEntry
impl Send for UnsubscribeEntry
impl Sync for UnsubscribeEntry
impl Unpin for UnsubscribeEntry
impl UnsafeUnpin for UnsubscribeEntry
impl UnwindSafe for UnsubscribeEntry
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