#[non_exhaustive]pub struct GroupKeySet {
pub key_set_id: u16,
pub epoch_key: Vec<u8>,
pub epoch_start_time: u64,
}Expand description
A group key set to provision via KeySetWrite (Matter §11.2.6.1).
Only a single epoch key (key0) is populated; keys 1 and 2 are left as
Null per the single-epoch provisioning pattern used by most controllers.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.key_set_id: u16Key set id (must be ≥ 1; 0 is reserved for the IPK).
epoch_key: Vec<u8>16-byte epoch key (the group’s symmetric key material).
epoch_start_time: u64Epoch start time (Matter epoch microseconds).
Implementations§
Trait Implementations§
Source§impl Clone for GroupKeySet
impl Clone for GroupKeySet
Source§fn clone(&self) -> GroupKeySet
fn clone(&self) -> GroupKeySet
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GroupKeySet
impl Debug for GroupKeySet
impl Eq for GroupKeySet
Source§impl PartialEq for GroupKeySet
impl PartialEq for GroupKeySet
impl StructuralPartialEq for GroupKeySet
Auto Trait Implementations§
impl Freeze for GroupKeySet
impl RefUnwindSafe for GroupKeySet
impl Send for GroupKeySet
impl Sync for GroupKeySet
impl Unpin for GroupKeySet
impl UnsafeUnpin for GroupKeySet
impl UnwindSafe for GroupKeySet
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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