pub enum CrontabEntry {
EnvVar(EnvVarEntry),
User(UserCrontabEntry),
System(SystemCrontabEntry),
Anacron(AnacrontabEntry),
}Variants§
Implementations§
Trait Implementations§
Source§impl Debug for CrontabEntry
impl Debug for CrontabEntry
Source§impl Display for CrontabEntry
impl Display for CrontabEntry
Source§impl From<AnacrontabEntry> for CrontabEntry
impl From<AnacrontabEntry> for CrontabEntry
Source§fn from(entry: AnacrontabEntry) -> CrontabEntry
fn from(entry: AnacrontabEntry) -> CrontabEntry
Converts to this type from the input type.
Source§impl From<EnvVarEntry> for CrontabEntry
impl From<EnvVarEntry> for CrontabEntry
Source§fn from(entry: EnvVarEntry) -> CrontabEntry
fn from(entry: EnvVarEntry) -> CrontabEntry
Converts to this type from the input type.
Source§impl From<SystemCrontabEntry> for CrontabEntry
impl From<SystemCrontabEntry> for CrontabEntry
Source§fn from(entry: SystemCrontabEntry) -> CrontabEntry
fn from(entry: SystemCrontabEntry) -> CrontabEntry
Converts to this type from the input type.
Source§impl From<UserCrontabEntry> for CrontabEntry
impl From<UserCrontabEntry> for CrontabEntry
Source§fn from(entry: UserCrontabEntry) -> CrontabEntry
fn from(entry: UserCrontabEntry) -> CrontabEntry
Converts to this type from the input type.
Source§impl PartialEq for CrontabEntry
impl PartialEq for CrontabEntry
impl StructuralPartialEq for CrontabEntry
Auto Trait Implementations§
impl Freeze for CrontabEntry
impl RefUnwindSafe for CrontabEntry
impl Send for CrontabEntry
impl Sync for CrontabEntry
impl Unpin for CrontabEntry
impl UnwindSafe for CrontabEntry
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