pub struct OptInPage {
pub id: String,
pub slug: String,
pub url: String,
pub business_name: String,
pub use_case: Option<String>,
pub is_active: bool,
pub view_count: i32,
pub logo_url: Option<String>,
pub header_color: Option<String>,
pub button_color: Option<String>,
pub custom_headline: Option<String>,
pub created_at: Option<String>,
}Fields§
§id: String§slug: String§url: String§business_name: String§use_case: Option<String>§is_active: bool§view_count: i32§logo_url: Option<String>§header_color: Option<String>§custom_headline: Option<String>§created_at: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for OptInPage
impl<'de> Deserialize<'de> for OptInPage
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 OptInPage
impl RefUnwindSafe for OptInPage
impl Send for OptInPage
impl Sync for OptInPage
impl Unpin for OptInPage
impl UnsafeUnpin for OptInPage
impl UnwindSafe for OptInPage
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