pub struct NewSignup {
pub email_address: String,
pub platform_mac: bool,
pub platform_windows: bool,
pub platform_linux: bool,
pub editor_features: Vec<String>,
pub programming_languages: Vec<String>,
pub device_id: Option<String>,
pub added_to_mailing_list: bool,
pub created_at: Option<DateTime>,
}
Fields§
§email_address: String
§platform_mac: bool
§platform_windows: bool
§platform_linux: bool
§editor_features: Vec<String>
§programming_languages: Vec<String>
§device_id: Option<String>
§added_to_mailing_list: bool
§created_at: Option<DateTime>
Trait Implementations§
source§impl<'de> Deserialize<'de> for NewSignup
impl<'de> Deserialize<'de> for NewSignup
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 RefUnwindSafe for NewSignup
impl Send for NewSignup
impl Sync for NewSignup
impl Unpin for NewSignup
impl UnwindSafe for NewSignup
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