#[non_exhaustive]pub enum IntActionType {
Reserved,
IpMacStreamLocation,
DvbReserved(u8),
}Expand description
Action type coding — ETSI EN 301 192 §8.4.4.1 Table 14.
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.
Reserved
0x00 — reserved.
IpMacStreamLocation
0x01 — location of IP/MAC streams in DVB networks.
DvbReserved(u8)
0x02..=0xFF — reserved for future use.
Implementations§
Trait Implementations§
Source§impl Clone for IntActionType
impl Clone for IntActionType
Source§fn clone(&self) -> IntActionType
fn clone(&self) -> IntActionType
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 IntActionType
Source§impl Debug for IntActionType
impl Debug for IntActionType
impl Eq for IntActionType
Source§impl PartialEq for IntActionType
impl PartialEq for IntActionType
Source§fn eq(&self, other: &IntActionType) -> bool
fn eq(&self, other: &IntActionType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IntActionType
impl Serialize for IntActionType
impl StructuralPartialEq for IntActionType
Auto Trait Implementations§
impl Freeze for IntActionType
impl RefUnwindSafe for IntActionType
impl Send for IntActionType
impl Sync for IntActionType
impl Unpin for IntActionType
impl UnsafeUnpin for IntActionType
impl UnwindSafe for IntActionType
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