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§
Source§impl ComponentRange
 
impl ComponentRange
Sourcepub 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.
Sourcepub 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§
Source§impl Clone for ComponentRange
 
impl Clone for ComponentRange
Source§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 moreSource§impl Debug for ComponentRange
 
impl Debug for ComponentRange
Source§impl Display for ComponentRange
 
impl Display for ComponentRange
Source§impl From<ComponentRange> for Error
 
impl From<ComponentRange> for Error
Source§fn from(original: ComponentRange) -> Self
 
fn from(original: ComponentRange) -> Self
Converts to this type from the input type.
Source§impl Hash for ComponentRange
 
impl Hash for ComponentRange
Source§impl PartialEq for ComponentRange
 
impl PartialEq for ComponentRange
Source§impl TryFrom<Error> for ComponentRange
 
impl TryFrom<Error> for ComponentRange
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