#[non_exhaustive]pub enum UntActionType {
Reserved,
SystemSoftwareUpdate,
DvbReserved(u8),
UserDefined(u8),
}Expand description
Action type coding — ETSI TS 102 006 §9.4.2 Table 12.
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.
SystemSoftwareUpdate
0x01 — System Software Update.
DvbReserved(u8)
0x02..=0x7F — DVB reserved for future use.
UserDefined(u8)
0x80..=0xFF — user defined.
Implementations§
Trait Implementations§
Source§impl Clone for UntActionType
impl Clone for UntActionType
Source§fn clone(&self) -> UntActionType
fn clone(&self) -> UntActionType
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 UntActionType
Source§impl Debug for UntActionType
impl Debug for UntActionType
impl Eq for UntActionType
Source§impl PartialEq for UntActionType
impl PartialEq for UntActionType
Source§fn eq(&self, other: &UntActionType) -> bool
fn eq(&self, other: &UntActionType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UntActionType
impl Serialize for UntActionType
impl StructuralPartialEq for UntActionType
Auto Trait Implementations§
impl Freeze for UntActionType
impl RefUnwindSafe for UntActionType
impl Send for UntActionType
impl Sync for UntActionType
impl Unpin for UntActionType
impl UnsafeUnpin for UntActionType
impl UnwindSafe for UntActionType
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