#[non_exhaustive]pub enum ApplicationType {
ConditionalAccess,
ElectronicProgrammeGuide,
Reserved(u8),
}Expand description
application_type (Table, p. 28).
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.
ConditionalAccess
01 — Conditional Access.
ElectronicProgrammeGuide
02 — Electronic Programme Guide.
Reserved(u8)
Any other value (reserved).
Implementations§
Trait Implementations§
Source§impl Clone for ApplicationType
impl Clone for ApplicationType
Source§fn clone(&self) -> ApplicationType
fn clone(&self) -> ApplicationType
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 moreimpl Copy for ApplicationType
Source§impl Debug for ApplicationType
impl Debug for ApplicationType
Source§impl Display for ApplicationType
impl Display for ApplicationType
impl Eq for ApplicationType
Source§impl PartialEq for ApplicationType
impl PartialEq for ApplicationType
Source§impl Serialize for ApplicationType
Available on crate feature serde only.
impl Serialize for ApplicationType
Available on crate feature
serde only.impl StructuralPartialEq for ApplicationType
Auto Trait Implementations§
impl Freeze for ApplicationType
impl RefUnwindSafe for ApplicationType
impl Send for ApplicationType
impl Sync for ApplicationType
impl Unpin for ApplicationType
impl UnsafeUnpin for ApplicationType
impl UnwindSafe for ApplicationType
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