pub struct UserCrontabEntry {
pub sched: Schedule,
pub cmd: String,
}
Fields§
§sched: Schedule
§cmd: String
Trait Implementations§
Source§impl Debug for UserCrontabEntry
impl Debug for UserCrontabEntry
Source§impl Display for UserCrontabEntry
impl Display for UserCrontabEntry
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 FromStr for UserCrontabEntry
impl FromStr for UserCrontabEntry
Source§type Err = CrontabEntryParseError
type Err = CrontabEntryParseError
The associated error which can be returned from parsing.
Source§fn from_str(s: &str) -> Result<UserCrontabEntry, CrontabEntryParseError>
fn from_str(s: &str) -> Result<UserCrontabEntry, CrontabEntryParseError>
Parses a string
s
to return a value of this type. Read moreSource§impl PartialEq for UserCrontabEntry
impl PartialEq for UserCrontabEntry
impl StructuralPartialEq for UserCrontabEntry
Auto Trait Implementations§
impl Freeze for UserCrontabEntry
impl RefUnwindSafe for UserCrontabEntry
impl Send for UserCrontabEntry
impl Sync for UserCrontabEntry
impl Unpin for UserCrontabEntry
impl UnwindSafe for UserCrontabEntry
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