pub struct Dsi<'a> {
pub transaction_id: u32,
pub adaptation: &'a [u8],
pub server_id: [u8; 20],
pub compatibility_descriptor: &'a [u8],
pub private_data: &'a [u8],
}Expand description
DownloadServerInitiate (§7.3.6, messageId 0x1006).
Fields§
§transaction_id: u3232-bit transactionId. DVB (TR 101 202 §4.7.9): the 2 LSBs are 0x0000 for a DSI; bit 31 toggles on update.
adaptation: &'a [u8]Raw dsmccAdaptationHeader bytes (usually empty).
server_id: [u8; 20]20-byte serverId — all 0xFF under the DVB profile.
compatibility_descriptor: &'a [u8]compatibilityDescriptor() body after its 16-bit length field, raw (TS 102 006 Table 15 documents the structure).
private_data: &'a [u8]privateData, raw. SSU: GroupInfoIndication (TS 102 006 Table 6); object carousel: ServiceGatewayInfo (TR 101 202 Table 4.15).
Trait Implementations§
impl<'a> Eq for Dsi<'a>
impl<'a> StructuralPartialEq for Dsi<'a>
Auto Trait Implementations§
impl<'a> Freeze for Dsi<'a>
impl<'a> RefUnwindSafe for Dsi<'a>
impl<'a> Send for Dsi<'a>
impl<'a> Sync for Dsi<'a>
impl<'a> Unpin for Dsi<'a>
impl<'a> UnsafeUnpin for Dsi<'a>
impl<'a> UnwindSafe for Dsi<'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