Struct pavex::time::error::ComponentRange
pub struct ComponentRange { /* private fields */ }
Expand description
An error type indicating that a component provided to a method was out of range, causing a failure.
Implementations§
§impl ComponentRange
impl ComponentRange
pub const fn name(self) -> &'static str
pub const fn name(self) -> &'static str
Obtain the name of the component whose value was out of range.
pub const fn is_conditional(self) -> bool
pub const fn is_conditional(self) -> bool
Whether the value’s permitted range is conditional, i.e. whether an input with this value could have succeeded if the values of other components were different.
Trait Implementations§
§impl Clone for ComponentRange
impl Clone for ComponentRange
§fn clone(&self) -> ComponentRange
fn clone(&self) -> ComponentRange
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 more§impl Debug for ComponentRange
impl Debug for ComponentRange
§impl Display for ComponentRange
impl Display for ComponentRange
§impl Error for ComponentRange
impl Error for ComponentRange
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()
§impl Expected for ComponentRange
impl Expected for ComponentRange
This trait implementation is deprecated and will be removed in a future breaking release.
§impl From<ComponentRange> for Error
impl From<ComponentRange> for Error
§fn from(original: ComponentRange) -> Error
fn from(original: ComponentRange) -> Error
Converts to this type from the input type.
§impl Hash for ComponentRange
impl Hash for ComponentRange
§impl PartialEq for ComponentRange
impl PartialEq for ComponentRange
§impl TryFrom<Error> for ComponentRange
impl TryFrom<Error> for ComponentRange
§type Error = DifferentVariant
type Error = DifferentVariant
The type returned in the event of a conversion error.
§fn try_from(
err: Error,
) -> Result<ComponentRange, <ComponentRange as TryFrom<Error>>::Error>
fn try_from( err: Error, ) -> Result<ComponentRange, <ComponentRange as TryFrom<Error>>::Error>
Performs the conversion.
impl Copy for ComponentRange
impl Eq for ComponentRange
impl StructuralPartialEq for ComponentRange
Auto Trait Implementations§
impl Freeze for ComponentRange
impl RefUnwindSafe for ComponentRange
impl Send for ComponentRange
impl Sync for ComponentRange
impl Unpin for ComponentRange
impl UnwindSafe for ComponentRange
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
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.