Struct SetKeyDescriptor
pub struct SetKeyDescriptor {
pub key: Option<Vec<u8>>,
pub key_id: Option<u16>,
pub key_type: Option<KeyType>,
pub peer_addr: Option<[u8; 6]>,
pub rsc: Option<u64>,
pub cipher_oui: Option<[u8; 3]>,
pub cipher_type: Option<CipherSuiteType>,
/* private fields */
}
Expand description
IEEE Std 802.11-2020 6.3.19.1.2
Fields§
§key: Option<Vec<u8>>
The key value as bytes. 802.11 specifies a bit string for this field, but we represent it as a byte array for convenience. Required.
key_id: Option<u16>
Index for rotating keys, e.g. group keys. This value is always 0 for key types which aren’t rotating, e.g. pairwise keys. Required.
key_type: Option<KeyType>
Whether this key is a pairwise, group or peer key. Required.
peer_addr: Option<[u8; 6]>
The peer MAC address for pairwise and peer keys. For group keys this value is always the broadcast address. Required.
rsc: Option<u64>
Receive Sequence Counter for group keys only. In all other cases the RSC will be 0. Optional.
cipher_oui: Option<[u8; 3]>
IEEE Cipher suite selector. See IEEE Std 802.11-2016, 9.4.2.25.2, Table 9-131 Required.
cipher_type: Option<CipherSuiteType>
The cipher type. Required.
Trait Implementations§
§impl Clone for SetKeyDescriptor
impl Clone for SetKeyDescriptor
§fn clone(&self) -> SetKeyDescriptor
fn clone(&self) -> SetKeyDescriptor
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 more§impl Debug for SetKeyDescriptor
impl Debug for SetKeyDescriptor
§impl<D> Decode<SetKeyDescriptor, D> for SetKeyDescriptorwhere
D: ResourceDialect,
impl<D> Decode<SetKeyDescriptor, D> for SetKeyDescriptorwhere
D: ResourceDialect,
§fn new_empty() -> SetKeyDescriptor
fn new_empty() -> SetKeyDescriptor
Creates a valid instance of
Self
. The specific value does not matter,
since it will be overwritten by decode
.§impl Default for SetKeyDescriptor
impl Default for SetKeyDescriptor
§fn default() -> SetKeyDescriptor
fn default() -> SetKeyDescriptor
Returns the “default value” for a type. Read more
§impl<D> Encode<SetKeyDescriptor, D> for &SetKeyDescriptorwhere
D: ResourceDialect,
impl<D> Encode<SetKeyDescriptor, D> for &SetKeyDescriptorwhere
D: ResourceDialect,
§impl PartialEq for SetKeyDescriptor
impl PartialEq for SetKeyDescriptor
§impl TypeMarker for SetKeyDescriptor
impl TypeMarker for SetKeyDescriptor
§type Owned = SetKeyDescriptor
type Owned = SetKeyDescriptor
The owned Rust type which this FIDL type decodes into.
§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.
§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.§impl ValueTypeMarker for SetKeyDescriptor
impl ValueTypeMarker for SetKeyDescriptor
§type Borrowed<'a> = &'a SetKeyDescriptor
type Borrowed<'a> = &'a SetKeyDescriptor
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read more§fn borrow(
value: &<SetKeyDescriptor as TypeMarker>::Owned,
) -> <SetKeyDescriptor as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<SetKeyDescriptor as TypeMarker>::Owned, ) -> <SetKeyDescriptor as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned
to Self::Borrowed
.impl Persistable for SetKeyDescriptor
impl StructuralPartialEq for SetKeyDescriptor
Auto Trait Implementations§
impl Freeze for SetKeyDescriptor
impl RefUnwindSafe for SetKeyDescriptor
impl Send for SetKeyDescriptor
impl Sync for SetKeyDescriptor
impl Unpin for SetKeyDescriptor
impl UnwindSafe for SetKeyDescriptor
Blanket Implementations§
§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
The marker type to use when the body is at the top-level.
§type MarkerInResultUnion = T
type MarkerInResultUnion = T
The marker type to use when the body is nested in a result union.
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