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§
Source§impl Clone for SetKeyDescriptor
 
impl Clone for SetKeyDescriptor
Source§fn clone(&self) -> SetKeyDescriptor
 
fn clone(&self) -> SetKeyDescriptor
Returns a duplicate 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 SetKeyDescriptor
 
impl Debug for SetKeyDescriptor
Source§impl<D: ResourceDialect> Decode<SetKeyDescriptor, D> for SetKeyDescriptor
 
impl<D: ResourceDialect> Decode<SetKeyDescriptor, D> for SetKeyDescriptor
Source§impl Default for SetKeyDescriptor
 
impl Default for SetKeyDescriptor
Source§fn default() -> SetKeyDescriptor
 
fn default() -> SetKeyDescriptor
Returns the “default value” for a type. Read more
Source§impl<D: ResourceDialect> Encode<SetKeyDescriptor, D> for &SetKeyDescriptor
 
impl<D: ResourceDialect> Encode<SetKeyDescriptor, D> for &SetKeyDescriptor
Source§impl PartialEq for SetKeyDescriptor
 
impl PartialEq for SetKeyDescriptor
Source§impl TypeMarker for SetKeyDescriptor
 
impl TypeMarker for SetKeyDescriptor
Source§type Owned = SetKeyDescriptor
 
type Owned = SetKeyDescriptor
The owned Rust type which this FIDL type decodes into.
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.Source§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 moreSource§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.Source§impl ValueTypeMarker for SetKeyDescriptor
 
impl ValueTypeMarker for SetKeyDescriptor
Source§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 moreimpl 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§
Source§impl<T> Body for Twhere
    T: Persistable,
 
impl<T> Body for Twhere
    T: Persistable,
Source§type MarkerAtTopLevel = T
 
type MarkerAtTopLevel = T
The marker type to use when the body is at the top-level.
Source§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