pub struct SelectionInformation<'a> {
pub time: &'a [u8],
pub ports: Vec<InPortDescription<'a>>,
}Expand description
Selection information status data (Table 43) — status item 1: a timestamp
and a list of input-port → output-port routing descriptions.
Fields§
§time: &'a [u8]time — 5-byte UTC time (DVB SI TDT coding).
ports: Vec<InPortDescription<'a>>One entry per input port present in the object.
Trait Implementations§
Source§impl<'a> Clone for SelectionInformation<'a>
impl<'a> Clone for SelectionInformation<'a>
Source§fn clone(&self) -> SelectionInformation<'a>
fn clone(&self) -> SelectionInformation<'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 SelectionInformation<'a>
impl<'a> Debug for SelectionInformation<'a>
Source§impl<'a> Default for SelectionInformation<'a>
impl<'a> Default for SelectionInformation<'a>
Source§fn default() -> SelectionInformation<'a>
fn default() -> SelectionInformation<'a>
Returns the “default value” for a type. Read more
impl<'a> Eq for SelectionInformation<'a>
Source§impl<'a> Parse<'a> for SelectionInformation<'a>
impl<'a> Parse<'a> for SelectionInformation<'a>
Source§impl<'a> PartialEq for SelectionInformation<'a>
impl<'a> PartialEq for SelectionInformation<'a>
Source§fn eq(&self, other: &SelectionInformation<'a>) -> bool
fn eq(&self, other: &SelectionInformation<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for SelectionInformation<'a>
impl<'a> Serialize for SelectionInformation<'a>
Source§impl Serialize for SelectionInformation<'_>
impl Serialize for SelectionInformation<'_>
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 SelectionInformation<'a>
Auto Trait Implementations§
impl<'a> Freeze for SelectionInformation<'a>
impl<'a> RefUnwindSafe for SelectionInformation<'a>
impl<'a> Send for SelectionInformation<'a>
impl<'a> Sync for SelectionInformation<'a>
impl<'a> Unpin for SelectionInformation<'a>
impl<'a> UnsafeUnpin for SelectionInformation<'a>
impl<'a> UnwindSafe for SelectionInformation<'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