#[non_exhaustive]pub enum OperatingMode {
Timeshift,
UnattendedRecording,
Other(u8),
}Expand description
operating_mode (datatype 38) values (§6.4.3.3.2 prose): the CICAM treats
the programme as unattended when this is Timeshift or UnattendedRecording.
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.
Timeshift
0x01 — Timeshift.
UnattendedRecording
0x02 — Unattended Recording.
Other(u8)
Any other value (reserved / attended modes are CI Plus V1.3 defined).
Implementations§
Trait Implementations§
Source§impl Clone for OperatingMode
impl Clone for OperatingMode
Source§fn clone(&self) -> OperatingMode
fn clone(&self) -> OperatingMode
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 OperatingMode
Source§impl Debug for OperatingMode
impl Debug for OperatingMode
Source§impl Display for OperatingMode
impl Display for OperatingMode
impl Eq for OperatingMode
Source§impl PartialEq for OperatingMode
impl PartialEq for OperatingMode
Source§impl Serialize for OperatingMode
Available on crate feature serde only.
impl Serialize for OperatingMode
Available on crate feature
serde only.impl StructuralPartialEq for OperatingMode
Auto Trait Implementations§
impl Freeze for OperatingMode
impl RefUnwindSafe for OperatingMode
impl Send for OperatingMode
impl Sync for OperatingMode
impl Unpin for OperatingMode
impl UnsafeUnpin for OperatingMode
impl UnwindSafe for OperatingMode
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