pub struct ListSignupFormContent {
pub section: String,
pub value: String,
}
Expand description
The signup form body content.
Fields§
§section: String
The content section name. Possible Values: signup_message - unsub_message - signup_thank_you_title
value: String
The content section text.
Trait Implementations§
Source§impl Clone for ListSignupFormContent
impl Clone for ListSignupFormContent
Source§fn clone(&self) -> ListSignupFormContent
fn clone(&self) -> ListSignupFormContent
Returns a copy 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 ListSignupFormContent
impl Debug for ListSignupFormContent
Source§impl<'de> Deserialize<'de> for ListSignupFormContent
impl<'de> Deserialize<'de> for ListSignupFormContent
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 ListSignupFormContent
impl RefUnwindSafe for ListSignupFormContent
impl Send for ListSignupFormContent
impl Sync for ListSignupFormContent
impl Unpin for ListSignupFormContent
impl UnwindSafe for ListSignupFormContent
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