pub struct GroupInfoIndication<'a> {
pub groups: Vec<GroupInfo<'a>>,
}Expand description
GroupInfoIndication — TS 102 006 §8.1.1 Table 6.
Carried as the privateData payload of a DSI message
(Dsi::private_data) when the carousel is an SSU update carousel
(data_broadcast_id = 0x000A). It lists one entry per update group
delivered in the carousel, with its compatibility requirements
(hardware/software OUI constraints) and size.
Wire layout (bytes):
GroupInfoIndication() {
NumberOfGroups 2
for (i=0; i<N; i++) {
GroupId 4
GroupSize 4
GroupCompatibility variable (CompatibilityDescriptor — Table 7)
GroupInfoLength 2
for (j=0; j<M; j++) GroupInfoByte 1
PrivateDataLength 2
for (j=0; j<M; j++) PrivateDataByte 1
}
}Fields§
§groups: Vec<GroupInfo<'a>>Group entries in wire order.
Trait Implementations§
Source§impl<'a> Clone for GroupInfoIndication<'a>
impl<'a> Clone for GroupInfoIndication<'a>
Source§fn clone(&self) -> GroupInfoIndication<'a>
fn clone(&self) -> GroupInfoIndication<'a>
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<'a> Debug for GroupInfoIndication<'a>
impl<'a> Debug for GroupInfoIndication<'a>
impl<'a> Eq for GroupInfoIndication<'a>
Source§impl<'a> Parse<'a> for GroupInfoIndication<'a>
impl<'a> Parse<'a> for GroupInfoIndication<'a>
Source§impl<'a> PartialEq for GroupInfoIndication<'a>
impl<'a> PartialEq for GroupInfoIndication<'a>
Source§fn eq(&self, other: &GroupInfoIndication<'a>) -> bool
fn eq(&self, other: &GroupInfoIndication<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for GroupInfoIndication<'a>
impl<'a> Serialize for GroupInfoIndication<'a>
Source§impl Serialize for GroupInfoIndication<'_>
impl Serialize for GroupInfoIndication<'_>
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl<'a> StructuralPartialEq for GroupInfoIndication<'a>
Auto Trait Implementations§
impl<'a> Freeze for GroupInfoIndication<'a>
impl<'a> RefUnwindSafe for GroupInfoIndication<'a>
impl<'a> Send for GroupInfoIndication<'a>
impl<'a> Sync for GroupInfoIndication<'a>
impl<'a> Unpin for GroupInfoIndication<'a>
impl<'a> UnsafeUnpin for GroupInfoIndication<'a>
impl<'a> UnwindSafe for GroupInfoIndication<'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