pub struct DnsQuery {
pub transaction_id: u16,
pub flags: DnsFlags,
pub questions: Vec<DnsQuestion>,
pub timestamp: Timestamp,
}Available on crate feature
dns only.Expand description
Parsed DNS query observed on the wire.
Fields§
§transaction_id: u16§flags: DnsFlags§questions: Vec<DnsQuestion>§timestamp: TimestampTrait Implementations§
Auto Trait Implementations§
impl Freeze for DnsQuery
impl RefUnwindSafe for DnsQuery
impl Send for DnsQuery
impl Sync for DnsQuery
impl Unpin for DnsQuery
impl UnsafeUnpin for DnsQuery
impl UnwindSafe for DnsQuery
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