pub struct WlanFullmacImplIfcRoamConfRequest {
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 WlanFullmacImplIfcRoamConfRequest
impl Clone for WlanFullmacImplIfcRoamConfRequest
Source§fn clone(&self) -> WlanFullmacImplIfcRoamConfRequest
fn clone(&self) -> WlanFullmacImplIfcRoamConfRequest
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<WlanFullmacImplIfcRoamConfRequest, D> for WlanFullmacImplIfcRoamConfRequest
impl<D: ResourceDialect> Decode<WlanFullmacImplIfcRoamConfRequest, D> for WlanFullmacImplIfcRoamConfRequest
Source§impl Default for WlanFullmacImplIfcRoamConfRequest
impl Default for WlanFullmacImplIfcRoamConfRequest
Source§fn default() -> WlanFullmacImplIfcRoamConfRequest
fn default() -> WlanFullmacImplIfcRoamConfRequest
Source§impl<D: ResourceDialect> Encode<WlanFullmacImplIfcRoamConfRequest, D> for &WlanFullmacImplIfcRoamConfRequest
impl<D: ResourceDialect> Encode<WlanFullmacImplIfcRoamConfRequest, D> for &WlanFullmacImplIfcRoamConfRequest
Source§impl PartialEq for WlanFullmacImplIfcRoamConfRequest
impl PartialEq for WlanFullmacImplIfcRoamConfRequest
Source§fn eq(&self, other: &WlanFullmacImplIfcRoamConfRequest) -> bool
fn eq(&self, other: &WlanFullmacImplIfcRoamConfRequest) -> bool
self
and other
values to be equal, and is used by ==
.Source§impl TypeMarker for WlanFullmacImplIfcRoamConfRequest
impl TypeMarker for WlanFullmacImplIfcRoamConfRequest
Source§type Owned = WlanFullmacImplIfcRoamConfRequest
type Owned = WlanFullmacImplIfcRoamConfRequest
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 WlanFullmacImplIfcRoamConfRequest
impl ValueTypeMarker for WlanFullmacImplIfcRoamConfRequest
Source§type Borrowed<'a> = &'a WlanFullmacImplIfcRoamConfRequest
type Borrowed<'a> = &'a WlanFullmacImplIfcRoamConfRequest
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read moreimpl Persistable for WlanFullmacImplIfcRoamConfRequest
impl StructuralPartialEq for WlanFullmacImplIfcRoamConfRequest
Auto Trait Implementations§
impl Freeze for WlanFullmacImplIfcRoamConfRequest
impl RefUnwindSafe for WlanFullmacImplIfcRoamConfRequest
impl Send for WlanFullmacImplIfcRoamConfRequest
impl Sync for WlanFullmacImplIfcRoamConfRequest
impl Unpin for WlanFullmacImplIfcRoamConfRequest
impl UnwindSafe for WlanFullmacImplIfcRoamConfRequest
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
)