pub enum TimerProgrammedInfo {
Programmed(ProgrammedInfo),
NotProgrammed(NotProgrammedErrorInfo),
}Variants§
Programmed(ProgrammedInfo)
NotProgrammed(NotProgrammedErrorInfo)
Trait Implementations§
Source§impl Clone for TimerProgrammedInfo
impl Clone for TimerProgrammedInfo
Source§fn clone(&self) -> TimerProgrammedInfo
fn clone(&self) -> TimerProgrammedInfo
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 TimerProgrammedInfo
impl Debug for TimerProgrammedInfo
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 From<ProgrammedInfo> for TimerProgrammedInfo
impl From<ProgrammedInfo> for TimerProgrammedInfo
Source§fn from(val: ProgrammedInfo) -> TimerProgrammedInfo
fn from(val: ProgrammedInfo) -> TimerProgrammedInfo
Converts to this type from the input type.
Source§impl Hash for TimerProgrammedInfo
impl Hash for TimerProgrammedInfo
Source§impl PartialEq for TimerProgrammedInfo
impl PartialEq for TimerProgrammedInfo
impl Copy for TimerProgrammedInfo
impl Eq for TimerProgrammedInfo
impl StructuralPartialEq for TimerProgrammedInfo
Auto Trait Implementations§
impl Freeze for TimerProgrammedInfo
impl RefUnwindSafe for TimerProgrammedInfo
impl Send for TimerProgrammedInfo
impl Sync for TimerProgrammedInfo
impl Unpin for TimerProgrammedInfo
impl UnsafeUnpin for TimerProgrammedInfo
impl UnwindSafe for TimerProgrammedInfo
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