pub struct Query {
pub max_response_code: u8,
pub checksum: Checksum,
pub group_address: Address,
pub s_flag: bool,
pub qrv: u8,
pub qqic: u8,
pub source_addresses: Vec<Address>,
}Expand description
An IGMPv3 Membership Query following Section 4.1.
Fields§
§max_response_code: u8Max Response Code.
checksum: ChecksumThe Internet checksum of the entire IGMP message.
group_address: AddressGroup Address.
s_flag: boolSuppress Router-Side Processing flag.
qrv: u8Querier’s Robustness Variable.
qqic: u8Querier’s Query Interval Code.
source_addresses: Vec<Address>Source addresses.
Implementations§
Trait Implementations§
impl Eq for Query
impl StructuralPartialEq for Query
Auto Trait Implementations§
impl Freeze for Query
impl RefUnwindSafe for Query
impl Send for Query
impl Sync for Query
impl Unpin for Query
impl UnsafeUnpin for Query
impl UnwindSafe for Query
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