Enum ic_agent::request_id::error::RequestIdError
source · [−]pub enum RequestIdError {
Show 30 variants
CustomSerdeError(String),
EmptySerializer,
InvalidState,
UnsupportedStructInsideStruct,
UnsupportedTypeBool,
UnsupportedTypeU8,
UnsupportedTypeU16,
UnsupportedTypeU32,
UnsupportedTypeU64,
UnsupportedTypeU128,
UnsupportedTypeI8,
UnsupportedTypeI16,
UnsupportedTypeI32,
UnsupportedTypeI64,
UnsupportedTypeI128,
UnsupportedTypeF32,
UnsupportedTypeF64,
UnsupportedTypeChar,
UnsupportedTypeBytes,
UnsupportedTypeUnit,
UnsupportedTypePhantomData,
UnsupportedTypeUnitVariant,
UnsupportedTypeNewtypeStruct(String),
UnsupportedTypeNewTypeVariant,
UnsupportedTypeSequence,
UnsupportedTypeTuple,
UnsupportedTypeTupleStruct,
UnsupportedTypeTupleVariant,
UnsupportedTypeMap,
UnsupportedTypeStructVariant,
}Expand description
An error during the calculation of the RequestId. Since we use serde for serializing a data type into a hash, this has to support traits that serde expects, such as Display
Variants
CustomSerdeError(String)
An unknown error occurred inside serde.
EmptySerializer
The serializer was not given any data.
InvalidState
The serializer was in an invalid state.
UnsupportedStructInsideStruct
The serializer received a nested struct, which it does not support.
UnsupportedTypeBool
The serializer received a bool, which it does not support.
UnsupportedTypeU8
The serializer received a u8, which it does not support.
UnsupportedTypeU16
The serializer received a u16, which it does not support.
UnsupportedTypeU32
The serializer received a u32, which it does not support.
UnsupportedTypeU64
The serializer received a u64, which it does not support.
UnsupportedTypeU128
The serializer received a u128, which it does not support.
UnsupportedTypeI8
The serializer received a i8, which it does not support.
UnsupportedTypeI16
The serializer received a i16, which it does not support.
UnsupportedTypeI32
The serializer received a i32, which it does not support.
UnsupportedTypeI64
The serializer received a i64, which it does not support.
UnsupportedTypeI128
The serializer received a i128, which it does not support.
UnsupportedTypeF32
The serializer received a f32, which it does not support.
UnsupportedTypeF64
The serializer received a f64, which it does not support.
UnsupportedTypeChar
The serializer received a char, which it does not support.
UnsupportedTypeBytes
The serializer received a byte sequence, which it does not support.
UnsupportedTypeUnit
The serializer received a (), which it does not support.
UnsupportedTypePhantomData
The serializer received a PhantomData, which it does not support.
UnsupportedTypeUnitVariant
The serializer received an enum unit variant, which it does not support.
UnsupportedTypeNewtypeStruct(String)
The serializer received a newtype struct, which it does not support.
UnsupportedTypeNewTypeVariant
The serializer received an enum newtype variant, which it does not support.
UnsupportedTypeSequence
The serializer received a sequence, which it does not support.
UnsupportedTypeTuple
The serializer received a tuple, which it does not support.
UnsupportedTypeTupleStruct
The serializer received a tuple struct, which it does not support.
UnsupportedTypeTupleVariant
The serializer received an enum tuple variant, which it does not support.
UnsupportedTypeMap
The serializer received a map, which it does not support.
UnsupportedTypeStructVariant
The serializer received an enum struct variant, which it does not support.
Trait Implementations
sourceimpl Clone for RequestIdError
impl Clone for RequestIdError
sourcefn clone(&self) -> RequestIdError
fn clone(&self) -> RequestIdError
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresourceimpl Debug for RequestIdError
impl Debug for RequestIdError
sourceimpl Display for RequestIdError
impl Display for RequestIdError
sourceimpl Error for RequestIdError
impl Error for RequestIdError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
sourceimpl Error for RequestIdError
impl Error for RequestIdError
sourceimpl From<RequestIdError> for AgentError
impl From<RequestIdError> for AgentError
sourcefn from(source: RequestIdError) -> Self
fn from(source: RequestIdError) -> Self
sourceimpl Ord for RequestIdError
impl Ord for RequestIdError
sourcefn cmp(&self, other: &RequestIdError) -> Ordering
fn cmp(&self, other: &RequestIdError) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
sourceimpl PartialEq<RequestIdError> for RequestIdError
impl PartialEq<RequestIdError> for RequestIdError
sourcefn eq(&self, other: &RequestIdError) -> bool
fn eq(&self, other: &RequestIdError) -> bool
sourceimpl PartialOrd<RequestIdError> for RequestIdError
impl PartialOrd<RequestIdError> for RequestIdError
sourcefn partial_cmp(&self, other: &RequestIdError) -> Option<Ordering>
fn partial_cmp(&self, other: &RequestIdError) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self and other) and is used by the <=
operator. Read moreimpl Eq for RequestIdError
impl StructuralEq for RequestIdError
impl StructuralPartialEq for RequestIdError
Auto Trait Implementations
impl RefUnwindSafe for RequestIdError
impl Send for RequestIdError
impl Sync for RequestIdError
impl Unpin for RequestIdError
impl UnwindSafe for RequestIdError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.