pub struct GroupAssociations<'a> {
pub handle: u16,
pub group_name: &'a str,
pub items: GroupItems<'a>,
}Expand description
Named group with member items
Fields§
§handle: u16Specifies the structure’s handle
group_name: &'a strString describing the group
items: GroupItems<'a>Items iterator
Trait Implementations§
Source§impl<'a> Clone for GroupAssociations<'a>
impl<'a> Clone for GroupAssociations<'a>
Source§fn clone(&self) -> GroupAssociations<'a>
fn clone(&self) -> GroupAssociations<'a>
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<'a> Debug for GroupAssociations<'a>
impl<'a> Debug for GroupAssociations<'a>
Source§impl<'a> Hash for GroupAssociations<'a>
impl<'a> Hash for GroupAssociations<'a>
Source§impl<'a> PartialEq for GroupAssociations<'a>
impl<'a> PartialEq for GroupAssociations<'a>
impl<'a> Copy for GroupAssociations<'a>
impl<'a> Eq for GroupAssociations<'a>
impl<'a> StructuralPartialEq for GroupAssociations<'a>
Auto Trait Implementations§
impl<'a> Freeze for GroupAssociations<'a>
impl<'a> RefUnwindSafe for GroupAssociations<'a>
impl<'a> Send for GroupAssociations<'a>
impl<'a> Sync for GroupAssociations<'a>
impl<'a> Unpin for GroupAssociations<'a>
impl<'a> UnsafeUnpin for GroupAssociations<'a>
impl<'a> UnwindSafe for GroupAssociations<'a>
Blanket Implementations§
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