pub struct SuppressionGroup {
pub is_default: Option<bool>,
pub last_email_sent_at: Option<i64>,
pub unsubscribes: Option<i64>,
pub description: String,
pub name: String,
pub id: f64,
}Fields§
§is_default: Option<bool>Indicates if this is the default suppression group.
last_email_sent_at: Option<i64>§unsubscribes: Option<i64>The unsubscribes associated with this group.
description: StringA description of the suppression group.
name: StringThe name of the suppression group. Each group created by a user must have a unique name.
id: f64The id of the suppression group.
Trait Implementations§
Source§impl Debug for SuppressionGroup
impl Debug for SuppressionGroup
Source§impl Default for SuppressionGroup
impl Default for SuppressionGroup
Source§fn default() -> SuppressionGroup
fn default() -> SuppressionGroup
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SuppressionGroup
impl<'de> Deserialize<'de> for SuppressionGroup
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
Source§impl Display for SuppressionGroup
impl Display for SuppressionGroup
Auto Trait Implementations§
impl Freeze for SuppressionGroup
impl RefUnwindSafe for SuppressionGroup
impl Send for SuppressionGroup
impl Sync for SuppressionGroup
impl Unpin for SuppressionGroup
impl UnwindSafe for SuppressionGroup
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