Enum Encoded
enum Encoded {
Sent,
TooLarge,
BufferFull,
}Expand description
Disposition of one encode_publish attempt.
Variants§
Sent
Written to the output buffer (a New alias was confirmed).
TooLarge
Exceeds the server’s Maximum Packet Size; not written.
BufferFull
The output buffer could not accept it (fixed-capacity buffer full).
Auto Trait Implementations§
impl Freeze for Encoded
impl RefUnwindSafe for Encoded
impl Send for Encoded
impl Sync for Encoded
impl Unpin for Encoded
impl UnwindSafe for Encoded
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