#[non_exhaustive]pub struct GroupKeyMapEntry {
pub group_id: u16,
pub group_key_set_id: u16,
}Expand description
One GroupKeyMap entry binding a group id to a key set (Matter §11.2.6.x).
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.group_id: u16Group id.
group_key_set_id: u16Key set id this group uses.
Implementations§
Trait Implementations§
Source§impl Clone for GroupKeyMapEntry
impl Clone for GroupKeyMapEntry
Source§fn clone(&self) -> GroupKeyMapEntry
fn clone(&self) -> GroupKeyMapEntry
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 moreimpl Copy for GroupKeyMapEntry
Source§impl Debug for GroupKeyMapEntry
impl Debug for GroupKeyMapEntry
impl Eq for GroupKeyMapEntry
Source§impl PartialEq for GroupKeyMapEntry
impl PartialEq for GroupKeyMapEntry
impl StructuralPartialEq for GroupKeyMapEntry
Auto Trait Implementations§
impl Freeze for GroupKeyMapEntry
impl RefUnwindSafe for GroupKeyMapEntry
impl Send for GroupKeyMapEntry
impl Sync for GroupKeyMapEntry
impl Unpin for GroupKeyMapEntry
impl UnsafeUnpin for GroupKeyMapEntry
impl UnwindSafe for GroupKeyMapEntry
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