pub struct ConversionRange;
Expand description
An error type indicating that a conversion failed because the target type could not store the initial value.
Trait Implementations§
source§impl Clone for ConversionRange
impl Clone for ConversionRange
source§fn clone(&self) -> ConversionRange
fn clone(&self) -> ConversionRange
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 ConversionRange
impl Debug for ConversionRange
source§impl Display for ConversionRange
impl Display for ConversionRange
source§impl Error for ConversionRange
impl Error for ConversionRange
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<ConversionRange> for Error
impl From<ConversionRange> for Error
source§fn from(err: ConversionRange) -> Error
fn from(err: ConversionRange) -> Error
Converts to this type from the input type.
source§impl PartialEq for ConversionRange
impl PartialEq for ConversionRange
source§fn eq(&self, other: &ConversionRange) -> bool
fn eq(&self, other: &ConversionRange) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Error> for ConversionRange
impl TryFrom<Error> for ConversionRange
§type Error = DifferentVariant
type Error = DifferentVariant
The type returned in the event of a conversion error.
source§fn try_from(
err: Error,
) -> Result<ConversionRange, <ConversionRange as TryFrom<Error>>::Error>
fn try_from( err: Error, ) -> Result<ConversionRange, <ConversionRange as TryFrom<Error>>::Error>
Performs the conversion.
impl Copy for ConversionRange
impl Eq for ConversionRange
impl StructuralPartialEq for ConversionRange
Auto Trait Implementations§
impl Freeze for ConversionRange
impl RefUnwindSafe for ConversionRange
impl Send for ConversionRange
impl Sync for ConversionRange
impl Unpin for ConversionRange
impl UnwindSafe for ConversionRange
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: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.