pub enum BuilderError {
Overflow,
SessionIdOverflow,
DisjointMutError,
}Variants§
Overflow
Static buffer is either not long enough to hold the buffered record or length of payload part is overflowing maximum possible.
SessionIdOverflow
Session Id length is one byte but size was > 255
DisjointMutError
Error getting disjoint mut
Trait Implementations§
Source§impl Debug for BuilderError
impl Debug for BuilderError
Source§impl PartialEq for BuilderError
impl PartialEq for BuilderError
impl StructuralPartialEq for BuilderError
Auto Trait Implementations§
impl Freeze for BuilderError
impl RefUnwindSafe for BuilderError
impl Send for BuilderError
impl Sync for BuilderError
impl Unpin for BuilderError
impl UnwindSafe for BuilderError
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