pub struct SendChecklistType {
pub is_ready: bool,
pub items: Vec<ChecklistItem>,
pub _links: Vec<LinkType>,
}Expand description
Review the send checklist for your campaign, and resolve any issues before sending.
Fields§
§is_ready: boolThe id of the template to use.
items: Vec<ChecklistItem>Content for the sections of the template. Each key should be the unique mc:edit area name from the template.
_links: Vec<LinkType>A list of link types and descriptions for the API schema documents.
Trait Implementations§
Source§impl Clone for SendChecklistType
impl Clone for SendChecklistType
Source§fn clone(&self) -> SendChecklistType
fn clone(&self) -> SendChecklistType
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 SendChecklistType
impl Debug for SendChecklistType
Source§impl<'de> Deserialize<'de> for SendChecklistType
impl<'de> Deserialize<'de> for SendChecklistType
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 SendChecklistType
impl RefUnwindSafe for SendChecklistType
impl Send for SendChecklistType
impl Sync for SendChecklistType
impl Unpin for SendChecklistType
impl UnsafeUnpin for SendChecklistType
impl UnwindSafe for SendChecklistType
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