pub struct ComponentRange {
pub(crate) name: &'static str,
pub(crate) is_conditional: bool,
}Expand description
An error type indicating that a component provided to a method was out of range, causing a failure.
Fields§
§name: &'static strName of the component.
is_conditional: boolWhether an input with the same value could have succeeded if the values of other components were different.
Implementations§
Source§impl ComponentRange
impl ComponentRange
Sourcepub(crate) const fn unconditional(name: &'static str) -> Self
pub(crate) const fn unconditional(name: &'static str) -> Self
Create a new ComponentRange error that is not conditional.
Sourcepub(crate) const fn conditional(name: &'static str) -> Self
pub(crate) const fn conditional(name: &'static str) -> Self
Create a new ComponentRange error that is conditional.
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.
Source§impl ComponentRange
impl ComponentRange
Sourcepub(crate) fn into_de_error<E>(self) -> Ewhere
E: Error,
Available on crate feature serde only.
pub(crate) fn into_de_error<E>(self) -> Ewhere
E: Error,
serde only.Convert the error to a deserialization error.
Trait Implementations§
Source§impl Clone for ComponentRange
impl Clone for ComponentRange
Source§fn clone(&self) -> ComponentRange
fn clone(&self) -> ComponentRange
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ComponentRange
impl Debug for ComponentRange
Source§impl Display for ComponentRange
impl Display for ComponentRange
Source§impl Eq for ComponentRange
impl Eq for ComponentRange
Source§#[doc(hidden)]fn assert_fields_are_eq(&self)
#[doc(hidden)]fn assert_fields_are_eq(&self)
derive_eq_internals)1.0.0 · Source§#[doc(hidden)]fn assert_receiver_is_total_eq(&self)
#[doc(hidden)]fn assert_receiver_is_total_eq(&self)
implementation detail of #[derive(Eq)]
Source§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)>
Source§#[doc(hidden)]fn type_id(&self, _: Internal) -> TypeIdwhere
Self: 'static,
#[doc(hidden)]fn type_id(&self, _: Internal) -> TypeIdwhere
Self: 'static,
error_type_id)TypeId of self.1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
Source§impl Expected for ComponentRange
Available on crate feature serde only.This trait implementation is deprecated and will be removed in a future breaking release.
impl Expected for ComponentRange
serde only.This trait implementation is deprecated and will be removed in a future breaking release.
Source§impl From<ComponentRange> for Error
impl From<ComponentRange> for Error
Source§fn from(original: ComponentRange) -> Self
fn from(original: ComponentRange) -> Self
Source§impl From<ComponentRange> for Format
Available on crate feature formatting only.
impl From<ComponentRange> for Format
formatting only.Source§fn from(err: ComponentRange) -> Self
fn from(err: ComponentRange) -> Self
Source§impl From<ComponentRange> for TryFromParsed
Available on crate feature parsing only.
impl From<ComponentRange> for TryFromParsed
parsing only.Source§fn from(v: ComponentRange) -> Self
fn from(v: ComponentRange) -> Self
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
Source§impl TryFrom<Format> for ComponentRange
Available on crate feature formatting only.
impl TryFrom<Format> for ComponentRange
formatting only.Source§impl TryFrom<TryFromParsed> for ComponentRange
Available on crate feature parsing only.
impl TryFrom<TryFromParsed> for ComponentRange
parsing only.Source§type Error = DifferentVariant
type Error = DifferentVariant
impl Copy for ComponentRange
impl StructuralPartialEq for ComponentRange
impl TrivialClone 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 UnsafeUnpin 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> SizedTypeProperties for T
impl<T> SizedTypeProperties for T
Source§#[doc(hidden)]const SIZE: usize = _
#[doc(hidden)]const SIZE: usize = _
sized_type_properties)Source§#[doc(hidden)]const ALIGN: usize = _
#[doc(hidden)]const ALIGN: usize = _
sized_type_properties)Source§#[doc(hidden)]const ALIGNMENT: Alignment = _
#[doc(hidden)]const ALIGNMENT: Alignment = _
ptr_alignment_type)Source§#[doc(hidden)]const IS_ZST: bool = _
#[doc(hidden)]const IS_ZST: bool = _
sized_type_properties)Source§#[doc(hidden)]const LAYOUT: Layout = _
#[doc(hidden)]const LAYOUT: Layout = _
sized_type_properties)Source§#[doc(hidden)]const MAX_SLICE_LEN: usize = _
#[doc(hidden)]const MAX_SLICE_LEN: usize = _
sized_type_properties)[Self]. Read more