pub struct GroupInfo<'a> {
pub group_id: u32,
pub group_size: u32,
pub group_compatibility: CompatibilityDescriptor<'a>,
pub group_info: &'a [u8],
pub private_data: &'a [u8],
}Expand description
One group entry in a GroupInfoIndication — TS 102 006 Table 6.
Fields§
§group_id: u32GroupId — 4-byte group identifier.
group_size: u32GroupSize — total size of the SSU update group in bytes.
group_compatibility: CompatibilityDescriptor<'a>GroupCompatibility — compatibility descriptor for this group
(TS 102 006 Table 7 / Table 15).
group_info: &'a [u8]GroupInfoByte loop — application-specific per-group data.
private_data: &'a [u8]PrivateDataByte loop — private extension bytes.
Trait Implementations§
impl<'a> Eq for GroupInfo<'a>
Source§impl<'a> PartialEq for GroupInfo<'a>
impl<'a> PartialEq for GroupInfo<'a>
impl<'a> StructuralPartialEq for GroupInfo<'a>
Auto Trait Implementations§
impl<'a> Freeze for GroupInfo<'a>
impl<'a> RefUnwindSafe for GroupInfo<'a>
impl<'a> Send for GroupInfo<'a>
impl<'a> Sync for GroupInfo<'a>
impl<'a> Unpin for GroupInfo<'a>
impl<'a> UnsafeUnpin for GroupInfo<'a>
impl<'a> UnwindSafe for GroupInfo<'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