pub enum SetLocalConsolePasswordError {
InternalServerError(String),
InvalidGatewayRequest(String),
}Expand description
Errors returned by SetLocalConsolePassword
Variants§
InternalServerError(String)
An internal server error has occurred during the request. For more information, see the error and message fields.
InvalidGatewayRequest(String)
An exception occurred because an invalid gateway request was issued to the service. For more information, see the error and message fields.
Implementations§
Trait Implementations§
Source§impl Debug for SetLocalConsolePasswordError
impl Debug for SetLocalConsolePasswordError
Source§impl Error for SetLocalConsolePasswordError
impl Error for SetLocalConsolePasswordError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for SetLocalConsolePasswordError
impl PartialEq for SetLocalConsolePasswordError
Source§fn eq(&self, other: &SetLocalConsolePasswordError) -> bool
fn eq(&self, other: &SetLocalConsolePasswordError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SetLocalConsolePasswordError
Auto Trait Implementations§
impl Freeze for SetLocalConsolePasswordError
impl RefUnwindSafe for SetLocalConsolePasswordError
impl Send for SetLocalConsolePasswordError
impl Sync for SetLocalConsolePasswordError
impl Unpin for SetLocalConsolePasswordError
impl UnwindSafe for SetLocalConsolePasswordError
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