pub struct WlanFullmacImplIfcRoamResultIndRequest {
pub selected_bssid: Option<[u8; 6]>,
pub status_code: Option<StatusCode>,
pub original_association_maintained: Option<bool>,
pub target_bss_authenticated: Option<bool>,
pub association_id: Option<u16>,
pub association_ies: Option<Vec<u8>>,
/* private fields */
}
Fields§
§selected_bssid: Option<[u8; 6]>
BSSID of the target BSS. Required.
status_code: Option<StatusCode>
Result of the roam attempt. Required.
original_association_maintained: Option<bool>
Whether the original BSS association has been maintained through the roam attempt. Required.
A successful roam always incurs disassociation from the original BSS, so if status_code
is
success then this field must be set to false; a roam failure typically incurs disassociation
from the original BSS, but may not in some cases (e.g. in some Fast BSS Transition scenarios).
target_bss_authenticated: Option<bool>
Whether the client is authenticated with the target BSS. If status_code
is success, then
this field must be set to true; if the roam attempt failed, this field may be true or false.
This allows higher layers to decide how to clean up connection state after a failed roam
attempt.
association_id: Option<u16>
Association ID for this association with the AP. Required if status_code
is success.
association_ies: Option<Vec<u8>>
IEs for this association with the AP. Required if status_code
is success.
Trait Implementations§
Source§impl Clone for WlanFullmacImplIfcRoamResultIndRequest
impl Clone for WlanFullmacImplIfcRoamResultIndRequest
Source§fn clone(&self) -> WlanFullmacImplIfcRoamResultIndRequest
fn clone(&self) -> WlanFullmacImplIfcRoamResultIndRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<D: ResourceDialect> Decode<WlanFullmacImplIfcRoamResultIndRequest, D> for WlanFullmacImplIfcRoamResultIndRequest
impl<D: ResourceDialect> Decode<WlanFullmacImplIfcRoamResultIndRequest, D> for WlanFullmacImplIfcRoamResultIndRequest
Source§impl Default for WlanFullmacImplIfcRoamResultIndRequest
impl Default for WlanFullmacImplIfcRoamResultIndRequest
Source§fn default() -> WlanFullmacImplIfcRoamResultIndRequest
fn default() -> WlanFullmacImplIfcRoamResultIndRequest
Source§impl<D: ResourceDialect> Encode<WlanFullmacImplIfcRoamResultIndRequest, D> for &WlanFullmacImplIfcRoamResultIndRequest
impl<D: ResourceDialect> Encode<WlanFullmacImplIfcRoamResultIndRequest, D> for &WlanFullmacImplIfcRoamResultIndRequest
Source§impl PartialEq for WlanFullmacImplIfcRoamResultIndRequest
impl PartialEq for WlanFullmacImplIfcRoamResultIndRequest
Source§fn eq(&self, other: &WlanFullmacImplIfcRoamResultIndRequest) -> bool
fn eq(&self, other: &WlanFullmacImplIfcRoamResultIndRequest) -> bool
self
and other
values to be equal, and is used by ==
.Source§impl TypeMarker for WlanFullmacImplIfcRoamResultIndRequest
impl TypeMarker for WlanFullmacImplIfcRoamResultIndRequest
Source§type Owned = WlanFullmacImplIfcRoamResultIndRequest
type Owned = WlanFullmacImplIfcRoamResultIndRequest
Source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.Source§impl ValueTypeMarker for WlanFullmacImplIfcRoamResultIndRequest
impl ValueTypeMarker for WlanFullmacImplIfcRoamResultIndRequest
Source§type Borrowed<'a> = &'a WlanFullmacImplIfcRoamResultIndRequest
type Borrowed<'a> = &'a WlanFullmacImplIfcRoamResultIndRequest
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read moreimpl Persistable for WlanFullmacImplIfcRoamResultIndRequest
impl StructuralPartialEq for WlanFullmacImplIfcRoamResultIndRequest
Auto Trait Implementations§
impl Freeze for WlanFullmacImplIfcRoamResultIndRequest
impl RefUnwindSafe for WlanFullmacImplIfcRoamResultIndRequest
impl Send for WlanFullmacImplIfcRoamResultIndRequest
impl Sync for WlanFullmacImplIfcRoamResultIndRequest
impl Unpin for WlanFullmacImplIfcRoamResultIndRequest
impl UnwindSafe for WlanFullmacImplIfcRoamResultIndRequest
Blanket Implementations§
§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
§type MarkerInResultUnion = T
type MarkerInResultUnion = T
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)