pub struct ProbeRequest {
pub header: ManagementHeader,
pub station_info: StationInfo,
}
Fields§
§header: ManagementHeader
§station_info: StationInfo
Implementations§
Trait Implementations§
Source§impl Addresses for ProbeRequest
impl Addresses for ProbeRequest
Source§fn src(&self) -> Option<&MacAddress>
fn src(&self) -> Option<&MacAddress>
Returns the sender of the Frame.
This isn’t always send in every frame (e.g. CTS).
Source§fn dest(&self) -> &MacAddress
fn dest(&self) -> &MacAddress
Returns the destination of the Frame.
This should always be present.
Source§fn bssid(&self) -> Option<&MacAddress>
fn bssid(&self) -> Option<&MacAddress>
This isn’t always send in every frame (e.g. RTS).
Source§impl Clone for ProbeRequest
impl Clone for ProbeRequest
Source§fn clone(&self) -> ProbeRequest
fn clone(&self) -> ProbeRequest
Returns a copy 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 ProbeRequest
impl Debug for ProbeRequest
Source§impl From<ProbeRequest> for Frame
impl From<ProbeRequest> for Frame
Source§fn from(v: ProbeRequest) -> Frame
fn from(v: ProbeRequest) -> Frame
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ProbeRequest
impl RefUnwindSafe for ProbeRequest
impl Send for ProbeRequest
impl Sync for ProbeRequest
impl Unpin for ProbeRequest
impl UnwindSafe for ProbeRequest
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