pub struct SessionAuthErrorResponse {
pub exception_id: Option<Box<ExceptionId>>,
pub message: Option<String>,
pub username: String,
}Expand description
SessionAuthErrorResponse : Action: Attempt to login with username and password. Error: User does not exist or password is incorrect.
Fields§
§exception_id: Option<Box<ExceptionId>>§message: Option<String>§username: StringImplementations§
Source§impl SessionAuthErrorResponse
impl SessionAuthErrorResponse
Sourcepub fn new(username: String) -> SessionAuthErrorResponse
pub fn new(username: String) -> SessionAuthErrorResponse
Action: Attempt to login with username and password. Error: User does not exist or password is incorrect.
Trait Implementations§
Source§impl Clone for SessionAuthErrorResponse
impl Clone for SessionAuthErrorResponse
Source§fn clone(&self) -> SessionAuthErrorResponse
fn clone(&self) -> SessionAuthErrorResponse
Returns a duplicate 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 SessionAuthErrorResponse
impl Debug for SessionAuthErrorResponse
Source§impl Default for SessionAuthErrorResponse
impl Default for SessionAuthErrorResponse
Source§fn default() -> SessionAuthErrorResponse
fn default() -> SessionAuthErrorResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionAuthErrorResponse
impl<'de> Deserialize<'de> for SessionAuthErrorResponse
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 for SessionAuthErrorResponse
impl PartialEq for SessionAuthErrorResponse
Source§impl Serialize for SessionAuthErrorResponse
impl Serialize for SessionAuthErrorResponse
impl StructuralPartialEq for SessionAuthErrorResponse
Auto Trait Implementations§
impl Freeze for SessionAuthErrorResponse
impl RefUnwindSafe for SessionAuthErrorResponse
impl Send for SessionAuthErrorResponse
impl Sync for SessionAuthErrorResponse
impl Unpin for SessionAuthErrorResponse
impl UnwindSafe for SessionAuthErrorResponse
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