#[non_exhaustive]pub enum NotProgrammedErrorInfo {
NoFreeTimer,
DateOutOfRange,
RecordingSequenceError,
InvalidExternalPlug,
InvalidExternalPhysicalAddress,
CaUnsupported,
InsufficientCaEntitlements,
ResolutionUnsupported,
ParentalLock,
ClockFailure,
Duplicate {
duration_available: Option<Duration>,
},
}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.
NoFreeTimer
DateOutOfRange
RecordingSequenceError
InvalidExternalPlug
InvalidExternalPhysicalAddress
CaUnsupported
InsufficientCaEntitlements
ResolutionUnsupported
ParentalLock
ClockFailure
Duplicate
Trait Implementations§
Source§impl Clone for NotProgrammedErrorInfo
impl Clone for NotProgrammedErrorInfo
Source§fn clone(&self) -> NotProgrammedErrorInfo
fn clone(&self) -> NotProgrammedErrorInfo
Returns a duplicate of the value. Read more
1.0.0 · 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 NotProgrammedErrorInfo
impl Debug for NotProgrammedErrorInfo
Source§impl DurationAvailable for NotProgrammedErrorInfo
impl DurationAvailable for NotProgrammedErrorInfo
fn duration_available(&self) -> Option<Duration>
Source§impl From<NotProgrammedErrorInfo> for TimerProgrammedInfo
impl From<NotProgrammedErrorInfo> for TimerProgrammedInfo
Source§fn from(val: NotProgrammedErrorInfo) -> TimerProgrammedInfo
fn from(val: NotProgrammedErrorInfo) -> TimerProgrammedInfo
Converts to this type from the input type.
Source§impl Hash for NotProgrammedErrorInfo
impl Hash for NotProgrammedErrorInfo
Source§impl PartialEq for NotProgrammedErrorInfo
impl PartialEq for NotProgrammedErrorInfo
impl Copy for NotProgrammedErrorInfo
impl Eq for NotProgrammedErrorInfo
impl StructuralPartialEq for NotProgrammedErrorInfo
Auto Trait Implementations§
impl Freeze for NotProgrammedErrorInfo
impl RefUnwindSafe for NotProgrammedErrorInfo
impl Send for NotProgrammedErrorInfo
impl Sync for NotProgrammedErrorInfo
impl Unpin for NotProgrammedErrorInfo
impl UnsafeUnpin for NotProgrammedErrorInfo
impl UnwindSafe for NotProgrammedErrorInfo
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