#[non_exhaustive]pub enum DvbLocatorService {
Triplet {
dvb_service_triplet_id: u16,
},
Full {
transport_stream_id: u16,
original_network_id: u16,
service_id: u16,
},
}Expand description
Service identification within a DVB binary locator (Table 31, §7.3.2.3.3).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for DvbLocatorService
impl Clone for DvbLocatorService
Source§fn clone(&self) -> DvbLocatorService
fn clone(&self) -> DvbLocatorService
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 DvbLocatorService
impl Debug for DvbLocatorService
impl Eq for DvbLocatorService
Source§impl PartialEq for DvbLocatorService
impl PartialEq for DvbLocatorService
Source§fn eq(&self, other: &DvbLocatorService) -> bool
fn eq(&self, other: &DvbLocatorService) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DvbLocatorService
impl Serialize for DvbLocatorService
impl StructuralPartialEq for DvbLocatorService
Auto Trait Implementations§
impl Freeze for DvbLocatorService
impl RefUnwindSafe for DvbLocatorService
impl Send for DvbLocatorService
impl Sync for DvbLocatorService
impl Unpin for DvbLocatorService
impl UnsafeUnpin for DvbLocatorService
impl UnwindSafe for DvbLocatorService
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