pub enum SerializationError {
BufferTooSmall,
IndexTooLargeForSerializedType {
at: usize,
},
IndexOverflow {
at: usize,
},
}Variants§
BufferTooSmall
IndexTooLargeForSerializedType
An index in in the instruction with index at was too large to fit into
the serialized representation (u8 or u16 depending on the field).
IndexOverflow
Trait Implementations§
Source§impl Debug for SerializationError
impl Debug for SerializationError
Source§impl PartialEq for SerializationError
impl PartialEq for SerializationError
impl Eq for SerializationError
impl StructuralPartialEq for SerializationError
Auto Trait Implementations§
impl Freeze for SerializationError
impl RefUnwindSafe for SerializationError
impl Send for SerializationError
impl Sync for SerializationError
impl Unpin for SerializationError
impl UnsafeUnpin for SerializationError
impl UnwindSafe for SerializationError
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