pub enum Opcode {
Query,
IQuery,
Status,
Notify,
Update,
Unknown(u8),
}Expand description
DNS operation code.
Variants§
Query
Query request RFC 1035
IQuery
Inverse query (obsolete) [RFC 3425]
Status
Status message RFC 1035
Notify
Notify of change RFC 1996
Update
Update message RFC 2136
Unknown(u8)
Any other opcode
Trait Implementations§
Source§impl PartialOrd for Opcode
impl PartialOrd for Opcode
impl Copy for Opcode
impl Eq for Opcode
impl StructuralPartialEq for Opcode
Auto Trait Implementations§
impl Freeze for Opcode
impl RefUnwindSafe for Opcode
impl Send for Opcode
impl Sync for Opcode
impl Unpin for Opcode
impl UnsafeUnpin for Opcode
impl UnwindSafe for Opcode
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