Enum spacetimedb_lib::error::DecodeError
source · pub enum DecodeError {
Utf8(FromUtf8Error),
TypeDefUnknown(u8),
TypeDef(usize),
EnumDef(usize),
TupleDef(usize),
ElementDef(usize),
TypeValue(TypeDef),
TypeValueGetLength(TypeDef),
TypeValueRoom {
kind: TypeDef,
len: usize,
read: usize,
},
TypeBufferSmall {
kind: TypeDef,
len: usize,
read: usize,
},
TypeTooSmall {
kind: TypeDef,
expect: usize,
read: usize,
},
EnumValue,
}Variants§
Utf8(FromUtf8Error)
TypeDefUnknown(u8)
TypeDef(usize)
EnumDef(usize)
TupleDef(usize)
ElementDef(usize)
TypeValue(TypeDef)
TypeValueGetLength(TypeDef)
TypeValueRoom
TypeBufferSmall
TypeTooSmall
EnumValue
Trait Implementations§
source§impl Clone for DecodeError
impl Clone for DecodeError
source§fn clone(&self) -> DecodeError
fn clone(&self) -> DecodeError
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 DecodeError
impl Debug for DecodeError
source§impl Display for DecodeError
impl Display for DecodeError
source§impl Error for DecodeError
impl Error for DecodeError
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<DecodeError> for LibError
impl From<DecodeError> for LibError
source§fn from(source: DecodeError) -> Self
fn from(source: DecodeError) -> Self
Converts to this type from the input type.
source§impl From<FromUtf8Error> for DecodeError
impl From<FromUtf8Error> for DecodeError
source§fn from(source: FromUtf8Error) -> Self
fn from(source: FromUtf8Error) -> Self
Converts to this type from the input type.