pub enum CompDecoder {
Idle,
Packet {
seq_id: u8,
needed: CompData,
},
}Expand description
Decoder for MySql compressed packet.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for CompDecoder
impl Clone for CompDecoder
Source§fn clone(&self) -> CompDecoder
fn clone(&self) -> CompDecoder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CompDecoder
impl Debug for CompDecoder
Source§impl PartialEq for CompDecoder
impl PartialEq for CompDecoder
impl Copy for CompDecoder
impl Eq for CompDecoder
impl StructuralPartialEq for CompDecoder
Auto Trait Implementations§
impl Freeze for CompDecoder
impl RefUnwindSafe for CompDecoder
impl Send for CompDecoder
impl Sync for CompDecoder
impl Unpin for CompDecoder
impl UnwindSafe for CompDecoder
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