Struct fidl_fuchsia_wlan_mlme::SaeFrame
source · pub struct SaeFrame {
pub peer_sta_address: [u8; 6],
pub status_code: StatusCode,
pub seq_num: u16,
pub sae_fields: Vec<u8>,
}
Fields§
§peer_sta_address: [u8; 6]
§status_code: StatusCode
§seq_num: u16
§sae_fields: Vec<u8>
Trait Implementations§
source§impl Decode<SaeFrame> for SaeFrame
impl Decode<SaeFrame> for SaeFrame
source§impl<T0: Encode<Array<u8, 6>>, T1: Encode<StatusCode>, T2: Encode<u16>, T3: Encode<UnboundedVector<u8>>> Encode<SaeFrame> for (T0, T1, T2, T3)
impl<T0: Encode<Array<u8, 6>>, T1: Encode<StatusCode>, T2: Encode<u16>, T3: Encode<UnboundedVector<u8>>> Encode<SaeFrame> for (T0, T1, T2, T3)
source§impl Ord for SaeFrame
impl Ord for SaeFrame
source§impl PartialEq<SaeFrame> for SaeFrame
impl PartialEq<SaeFrame> for SaeFrame
source§impl PartialOrd<SaeFrame> for SaeFrame
impl PartialOrd<SaeFrame> for SaeFrame
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl TypeMarker for SaeFrame
impl TypeMarker for SaeFrame
source§fn inline_align(context: Context) -> usize
fn inline_align(context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
source§fn inline_size(context: Context) -> usize
fn inline_size(context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
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
Returns true if the memory layout of
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.