Enum zng_wgt_toggle::SelectorError
source · pub enum SelectorError {
WrongType,
ReadOnly,
CannotClear,
Custom(Arc<dyn Error + Send + Sync>),
}
Expand description
Error for Selector
operations.
Variants§
WrongType
Cannot select item because it is not of type that the selector can handle.
ReadOnly
Cannot (de)select item because the selection is read-only.
CannotClear
Cannot deselect item because the selection cannot be empty.
Custom(Arc<dyn Error + Send + Sync>)
Cannot select item because of a selector specific reason.
Implementations§
source§impl SelectorError
impl SelectorError
sourcepub fn custom_str(str: impl Into<String>) -> SelectorError
pub fn custom_str(str: impl Into<String>) -> SelectorError
New custom error from string.
Trait Implementations§
source§impl Clone for SelectorError
impl Clone for SelectorError
source§fn clone(&self) -> SelectorError
fn clone(&self) -> SelectorError
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 SelectorError
impl Debug for SelectorError
source§impl Display for SelectorError
impl Display for SelectorError
source§impl Error for SelectorError
impl Error for SelectorError
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<VarIsReadOnlyError> for SelectorError
impl From<VarIsReadOnlyError> for SelectorError
source§fn from(_: VarIsReadOnlyError) -> Self
fn from(_: VarIsReadOnlyError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SelectorError
impl !RefUnwindSafe for SelectorError
impl Send for SelectorError
impl Sync for SelectorError
impl Unpin for SelectorError
impl !UnwindSafe for SelectorError
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
)source§impl<T> DataNoteValue for T
impl<T> DataNoteValue for T
source§impl<T> FsChangeNote for T
impl<T> FsChangeNote for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more