pub enum CodecError {
Wire(String),
Dynamic(String),
NotSupported(String),
}Expand description
Reflective-codec error.
Variants§
Wire(String)
A wire-level read/write failure from the underlying CDR layer.
Dynamic(String)
A DynamicData API failure (type mismatch, unknown member …).
NotSupported(String)
A construct the reflective path does not yet support.
Trait Implementations§
Source§impl Debug for CodecError
impl Debug for CodecError
Auto Trait Implementations§
impl Freeze for CodecError
impl RefUnwindSafe for CodecError
impl Send for CodecError
impl Sync for CodecError
impl Unpin for CodecError
impl UnsafeUnpin for CodecError
impl UnwindSafe for CodecError
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