pub struct ViewedService {
pub service_id: u16,
pub component_tags: Vec<u8>,
}Expand description
Viewed service status data (Table 49) — status item 3.
Fields§
§service_id: u16service_id / program_number currently selected (0x0000 = not in the TS).
component_tags of the components currently selected for decoding.
Trait Implementations§
Source§impl Clone for ViewedService
impl Clone for ViewedService
Source§fn clone(&self) -> ViewedService
fn clone(&self) -> ViewedService
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 Debug for ViewedService
impl Debug for ViewedService
Source§impl Default for ViewedService
impl Default for ViewedService
Source§fn default() -> ViewedService
fn default() -> ViewedService
Returns the “default value” for a type. Read more
impl Eq for ViewedService
Source§impl<'a> Parse<'a> for ViewedService
impl<'a> Parse<'a> for ViewedService
Source§impl PartialEq for ViewedService
impl PartialEq for ViewedService
Source§fn eq(&self, other: &ViewedService) -> bool
fn eq(&self, other: &ViewedService) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ViewedService
impl Serialize for ViewedService
Source§impl Serialize for ViewedService
impl Serialize for ViewedService
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 StructuralPartialEq for ViewedService
Auto Trait Implementations§
impl Freeze for ViewedService
impl RefUnwindSafe for ViewedService
impl Send for ViewedService
impl Sync for ViewedService
impl Unpin for ViewedService
impl UnsafeUnpin for ViewedService
impl UnwindSafe for ViewedService
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