pub struct ConfirmUserResponse {
pub confirmed: bool,
pub error: Option<String>,
}Fields§
§confirmed: bool§error: Option<String>Trait Implementations§
Source§impl Clone for ConfirmUserResponse
impl Clone for ConfirmUserResponse
Source§fn clone(&self) -> ConfirmUserResponse
fn clone(&self) -> ConfirmUserResponse
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 Debug for ConfirmUserResponse
impl Debug for ConfirmUserResponse
Source§impl<'de> Deserialize<'de> for ConfirmUserResponse
impl<'de> Deserialize<'de> for ConfirmUserResponse
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 ConfirmUserResponse
impl RefUnwindSafe for ConfirmUserResponse
impl Send for ConfirmUserResponse
impl Sync for ConfirmUserResponse
impl Unpin for ConfirmUserResponse
impl UnsafeUnpin for ConfirmUserResponse
impl UnwindSafe for ConfirmUserResponse
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