pub enum DICTPacketKind {
ReplyOnly,
OkReply,
InitialConnection(String),
DefinitionsFollow,
Definition(Definition),
Matches(Vec<Match>),
Databases(Vec<Database>),
Strategies(Vec<Strategy>),
}
Variants§
ReplyOnly
OkReply
InitialConnection(String)
DefinitionsFollow
Definition(Definition)
Matches(Vec<Match>)
Databases(Vec<Database>)
Strategies(Vec<Strategy>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DICTPacketKind
impl RefUnwindSafe for DICTPacketKind
impl Send for DICTPacketKind
impl Sync for DICTPacketKind
impl Unpin for DICTPacketKind
impl UnwindSafe for DICTPacketKind
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