pub struct ImageIconFirst<'a> {
pub icon_transport_mode: u8,
pub position: Option<IconPosition>,
pub icon_type: DvbText<'a>,
pub payload: IconLocation<'a>,
}Expand description
First-segment metadata (descriptor_number == 0).
Fields§
§icon_transport_mode: u8icon_transport_mode (2 bits) — Table 146.
position: Option<IconPosition>position is Some iff position_flag == 1.
icon_type: DvbText<'a>icon_type_char text run (length-delimited in the wire).
payload: IconLocation<'a>Transport-mode-dependent payload (Table 146):
0 → icon data bytes; 1 → URL text; 2-3 → empty.
Trait Implementations§
Source§impl<'a> Clone for ImageIconFirst<'a>
impl<'a> Clone for ImageIconFirst<'a>
Source§fn clone(&self) -> ImageIconFirst<'a>
fn clone(&self) -> ImageIconFirst<'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 ImageIconFirst<'a>
impl<'a> Debug for ImageIconFirst<'a>
impl<'a> Eq for ImageIconFirst<'a>
Source§impl<'a> PartialEq for ImageIconFirst<'a>
impl<'a> PartialEq for ImageIconFirst<'a>
Source§fn eq(&self, other: &ImageIconFirst<'a>) -> bool
fn eq(&self, other: &ImageIconFirst<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for ImageIconFirst<'a>
impl<'a> Serialize for ImageIconFirst<'a>
impl<'a> StructuralPartialEq for ImageIconFirst<'a>
Source§impl<'a> Yokeable<'a> for ImageIconFirst<'static>
impl<'a> Yokeable<'a> for ImageIconFirst<'static>
Source§type Output = ImageIconFirst<'a>
type Output = ImageIconFirst<'a>
This type MUST be
Self with the 'static replaced with 'a, i.e. Self<'a>Source§fn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
Auto Trait Implementations§
impl<'a> Freeze for ImageIconFirst<'a>
impl<'a> RefUnwindSafe for ImageIconFirst<'a>
impl<'a> Send for ImageIconFirst<'a>
impl<'a> Sync for ImageIconFirst<'a>
impl<'a> Unpin for ImageIconFirst<'a>
impl<'a> UnsafeUnpin for ImageIconFirst<'a>
impl<'a> UnwindSafe for ImageIconFirst<'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