pub struct SignUpForAndroidTestingRequest {
pub email: String,
pub source: Option<String>,
}Expand description
SignUpForAndroidTestingRequest model.
Fields§
§email: String§source: Option<String>Where the sign-up came from, e.g. landing. Truncated to 40 chars.
Trait Implementations§
Source§impl Clone for SignUpForAndroidTestingRequest
impl Clone for SignUpForAndroidTestingRequest
Source§fn clone(&self) -> SignUpForAndroidTestingRequest
fn clone(&self) -> SignUpForAndroidTestingRequest
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 Default for SignUpForAndroidTestingRequest
impl Default for SignUpForAndroidTestingRequest
Source§fn default() -> SignUpForAndroidTestingRequest
fn default() -> SignUpForAndroidTestingRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignUpForAndroidTestingRequest
impl<'de> Deserialize<'de> for SignUpForAndroidTestingRequest
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
impl StructuralPartialEq for SignUpForAndroidTestingRequest
Auto Trait Implementations§
impl Freeze for SignUpForAndroidTestingRequest
impl RefUnwindSafe for SignUpForAndroidTestingRequest
impl Send for SignUpForAndroidTestingRequest
impl Sync for SignUpForAndroidTestingRequest
impl Unpin for SignUpForAndroidTestingRequest
impl UnsafeUnpin for SignUpForAndroidTestingRequest
impl UnwindSafe for SignUpForAndroidTestingRequest
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