Struct OutOfRange

struct OutOfRange { ... }

Out of range error type used in various converting APIs

Implementations

impl Clone for OutOfRange

fn clone(self: &Self) -> OutOfRange

impl Copy for OutOfRange

impl Debug for OutOfRange

fn fmt(self: &Self, f: &mut fmt::Formatter<'_>) -> fmt::Result

impl Display for OutOfRange

fn fmt(self: &Self, f: &mut fmt::Formatter<'_>) -> fmt::Result

impl Eq for OutOfRange

impl Error for OutOfRange

impl Freeze for OutOfRange

impl Hash for OutOfRange

fn hash<__H: $crate::hash::Hasher>(self: &Self, state: &mut __H)

impl PartialEq for OutOfRange

fn eq(self: &Self, other: &OutOfRange) -> bool

impl RefUnwindSafe for OutOfRange

impl Send for OutOfRange

impl StructuralPartialEq for OutOfRange

impl Sync for OutOfRange

impl Unpin for OutOfRange

impl UnwindSafe for OutOfRange

impl<T> Any for OutOfRange

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for OutOfRange

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for OutOfRange

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> CloneToUninit for OutOfRange

unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)

impl<T> From for OutOfRange

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> ToOwned for OutOfRange

fn to_owned(self: &Self) -> T
fn clone_into(self: &Self, target: &mut T)

impl<T> ToString for OutOfRange

fn to_string(self: &Self) -> String

impl<T, U> Into for OutOfRange

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for OutOfRange

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for OutOfRange

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>