pub struct ChecklistItem {
pub item_type: String,
pub id: u64,
pub heading: String,
pub details: String,
}Expand description
A list of feedback items to review before sending your campaign.
Fields§
§item_type: StringThe item type. success warning error
id: u64The ID for the specific item.
heading: StringThe heading for the specific item.
details: StringDetails about the specific feedback item.
Trait Implementations§
Source§impl Clone for ChecklistItem
impl Clone for ChecklistItem
Source§fn clone(&self) -> ChecklistItem
fn clone(&self) -> ChecklistItem
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 ChecklistItem
impl Debug for ChecklistItem
Source§impl Default for ChecklistItem
impl Default for ChecklistItem
Source§impl<'de> Deserialize<'de> for ChecklistItem
impl<'de> Deserialize<'de> for ChecklistItem
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 ChecklistItem
impl RefUnwindSafe for ChecklistItem
impl Send for ChecklistItem
impl Sync for ChecklistItem
impl Unpin for ChecklistItem
impl UnsafeUnpin for ChecklistItem
impl UnwindSafe for ChecklistItem
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