pub struct PreviewResponse {
pub email: Option<Box<Email>>,
pub errors: Option<Box<Errors>>,
}
Expand description
PreviewResponse :
Fields§
§email: Option<Box<Email>>
§errors: Option<Box<Errors>>
Implementations§
Source§impl PreviewResponse
impl PreviewResponse
Sourcepub fn new() -> PreviewResponse
pub fn new() -> PreviewResponse
Trait Implementations§
Source§impl Clone for PreviewResponse
impl Clone for PreviewResponse
Source§fn clone(&self) -> PreviewResponse
fn clone(&self) -> PreviewResponse
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 PreviewResponse
impl Debug for PreviewResponse
Source§impl Default for PreviewResponse
impl Default for PreviewResponse
Source§fn default() -> PreviewResponse
fn default() -> PreviewResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PreviewResponse
impl<'de> Deserialize<'de> for PreviewResponse
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 PartialEq for PreviewResponse
impl PartialEq for PreviewResponse
Source§impl Serialize for PreviewResponse
impl Serialize for PreviewResponse
impl StructuralPartialEq for PreviewResponse
Auto Trait Implementations§
impl Freeze for PreviewResponse
impl RefUnwindSafe for PreviewResponse
impl Send for PreviewResponse
impl Sync for PreviewResponse
impl Unpin for PreviewResponse
impl UnwindSafe for PreviewResponse
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