pub enum UnMessage<'a> {
Dsi(Dsi<'a>),
Dii(Dii<'a>),
}Expand description
A U-N download control message — payload of a table_id 0x3B DSM-CC
section, discriminated by messageId.
Variants§
Dsi(Dsi<'a>)
DownloadServerInitiate (messageId 0x1006).
Dii(Dii<'a>)
DownloadInfoIndication (messageId 0x1002).
Trait Implementations§
impl<'a> Eq for UnMessage<'a>
Source§impl<'a> PartialEq for UnMessage<'a>
impl<'a> PartialEq for UnMessage<'a>
Source§impl Serialize for UnMessage<'_>
impl Serialize for UnMessage<'_>
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 UnMessage<'a>
Auto Trait Implementations§
impl<'a> Freeze for UnMessage<'a>
impl<'a> RefUnwindSafe for UnMessage<'a>
impl<'a> Send for UnMessage<'a>
impl<'a> Sync for UnMessage<'a>
impl<'a> Unpin for UnMessage<'a>
impl<'a> UnsafeUnpin for UnMessage<'a>
impl<'a> UnwindSafe for UnMessage<'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