pub struct EmailTemplateList {
pub total: i64,
pub templates: Vec<EmailTemplate>,
}Expand description
Email Templates List
Fields§
§total: i64Total number of templates that matched your query.
templates: Vec<EmailTemplate>List of templates.
Implementations§
Trait Implementations§
Source§impl Clone for EmailTemplateList
impl Clone for EmailTemplateList
Source§fn clone(&self) -> EmailTemplateList
fn clone(&self) -> EmailTemplateList
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 EmailTemplateList
impl Debug for EmailTemplateList
Source§impl<'de> Deserialize<'de> for EmailTemplateList
impl<'de> Deserialize<'de> for EmailTemplateList
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 Serialize for EmailTemplateList
impl Serialize for EmailTemplateList
impl Model for EmailTemplateList
Auto Trait Implementations§
impl Freeze for EmailTemplateList
impl RefUnwindSafe for EmailTemplateList
impl Send for EmailTemplateList
impl Sync for EmailTemplateList
impl Unpin for EmailTemplateList
impl UnsafeUnpin for EmailTemplateList
impl UnwindSafe for EmailTemplateList
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