#[non_exhaustive]pub struct AuthenticationFailedException { /* private fields */ }Expand description
An authentication error occurred.
Implementations
sourceimpl AuthenticationFailedException
impl AuthenticationFailedException
sourcepub fn request_id(&self) -> Option<&str>
pub fn request_id(&self) -> Option<&str>
The identifier of the request that caused the exception.
sourceimpl AuthenticationFailedException
impl AuthenticationFailedException
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AuthenticationFailedException.
Trait Implementations
sourceimpl Clone for AuthenticationFailedException
impl Clone for AuthenticationFailedException
sourcefn clone(&self) -> AuthenticationFailedException
fn clone(&self) -> AuthenticationFailedException
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for AuthenticationFailedException
impl Debug for AuthenticationFailedException
sourceimpl Error for AuthenticationFailedException
impl Error for AuthenticationFailedException
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl PartialEq<AuthenticationFailedException> for AuthenticationFailedException
impl PartialEq<AuthenticationFailedException> for AuthenticationFailedException
sourcefn eq(&self, other: &AuthenticationFailedException) -> bool
fn eq(&self, other: &AuthenticationFailedException) -> bool
impl StructuralPartialEq for AuthenticationFailedException
Auto Trait Implementations
impl RefUnwindSafe for AuthenticationFailedException
impl Send for AuthenticationFailedException
impl Sync for AuthenticationFailedException
impl Unpin for AuthenticationFailedException
impl UnwindSafe for AuthenticationFailedException
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more