pub enum ControllerError {
Show 15 variants
UnimplementedRequest(SettingType, Request),
WriteFailure(SettingType),
InitFailure(Cow<'static, str>),
RestoreFailure(Cow<'static, str>),
ExternalFailure(SettingType, Cow<'static, str>, Cow<'static, str>, Cow<'static, str>),
InvalidArgument(SettingType, Cow<'static, str>, Cow<'static, str>),
IncompatibleArguments {
setting_type: SettingType,
main_arg: Cow<'static, str>,
other_args: Cow<'static, str>,
values: Cow<'static, str>,
reason: Cow<'static, str>,
},
UnhandledType(SettingType),
UnexpectedError(Cow<'static, str>),
UndeliverableError(SettingType, Request),
UnsupportedError(SettingType),
DeliveryError(SettingType, SettingType),
IrrecoverableError,
TimeoutError,
ExitError,
}
Variants§
UnimplementedRequest(SettingType, Request)
WriteFailure(SettingType)
InitFailure(Cow<'static, str>)
RestoreFailure(Cow<'static, str>)
ExternalFailure(SettingType, Cow<'static, str>, Cow<'static, str>, Cow<'static, str>)
InvalidArgument(SettingType, Cow<'static, str>, Cow<'static, str>)
IncompatibleArguments
Fields
§
setting_type: SettingType
UnhandledType(SettingType)
UnexpectedError(Cow<'static, str>)
UndeliverableError(SettingType, Request)
UnsupportedError(SettingType)
DeliveryError(SettingType, SettingType)
IrrecoverableError
TimeoutError
ExitError
Trait Implementations§
Source§impl Clone for ControllerError
impl Clone for ControllerError
Source§fn clone(&self) -> ControllerError
fn clone(&self) -> ControllerError
Returns a copy 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 ControllerError
impl Debug for ControllerError
Source§impl Display for ControllerError
impl Display for ControllerError
Source§impl Error for ControllerError
impl Error for ControllerError
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 From<ControllerError> for Error
impl From<ControllerError> for Error
Source§fn from(error: ControllerError) -> Self
fn from(error: ControllerError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ControllerError
impl PartialEq for ControllerError
impl StructuralPartialEq for ControllerError
Auto Trait Implementations§
impl Freeze for ControllerError
impl RefUnwindSafe for ControllerError
impl Send for ControllerError
impl Sync for ControllerError
impl Unpin for ControllerError
impl UnwindSafe for ControllerError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)