pub struct SignInRequest {
pub email: String,
pub password: String,
}Expand description
Sign-in request body.
Fields§
§email: StringEmail address.
password: StringPlaintext password.
Trait Implementations§
Source§impl Debug for SignInRequest
impl Debug for SignInRequest
Source§impl<'de> Deserialize<'de> for SignInRequest
impl<'de> Deserialize<'de> for SignInRequest
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 SignInRequest
impl RefUnwindSafe for SignInRequest
impl Send for SignInRequest
impl Sync for SignInRequest
impl Unpin for SignInRequest
impl UnsafeUnpin for SignInRequest
impl UnwindSafe for SignInRequest
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