pub struct UserResponseReadOnly {
pub id: Option<Box<String>>,
pub email_hash: Option<String>,
pub customer_id: Option<Box<String>>,
}
Fields§
§id: Option<Box<String>>
§email_hash: Option<String>
The alphanumeric string identifying a email login.
customer_id: Option<Box<String>>
Implementations§
source§impl UserResponseReadOnly
impl UserResponseReadOnly
pub fn new() -> UserResponseReadOnly
Trait Implementations§
source§impl Clone for UserResponseReadOnly
impl Clone for UserResponseReadOnly
source§fn clone(&self) -> UserResponseReadOnly
fn clone(&self) -> UserResponseReadOnly
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 UserResponseReadOnly
impl Debug for UserResponseReadOnly
source§impl Default for UserResponseReadOnly
impl Default for UserResponseReadOnly
source§fn default() -> UserResponseReadOnly
fn default() -> UserResponseReadOnly
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for UserResponseReadOnly
impl<'de> Deserialize<'de> for UserResponseReadOnly
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<UserResponseReadOnly> for UserResponseReadOnly
impl PartialEq<UserResponseReadOnly> for UserResponseReadOnly
source§fn eq(&self, other: &UserResponseReadOnly) -> bool
fn eq(&self, other: &UserResponseReadOnly) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for UserResponseReadOnly
impl Serialize for UserResponseReadOnly
impl StructuralPartialEq for UserResponseReadOnly
Auto Trait Implementations§
impl RefUnwindSafe for UserResponseReadOnly
impl Send for UserResponseReadOnly
impl Sync for UserResponseReadOnly
impl Unpin for UserResponseReadOnly
impl UnwindSafe for UserResponseReadOnly
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