pub enum CreationError {
PayloadTooBig,
}
Expand description
Error occuring when trying to create a new message to send to a client
Variants§
PayloadTooBig
Occurs when the data to send is too big to be sent in the alloted Initial Packet and 128 possible continuation packets.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CreationError
impl RefUnwindSafe for CreationError
impl Send for CreationError
impl Sync for CreationError
impl Unpin for CreationError
impl UnwindSafe for CreationError
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