Struct cronparse::CrontabFileError [] [src]

pub struct CrontabFileError {
    pub lineno: usize,
    pub line: Option<String>,
    pub kind: CrontabFileErrorKind,
}

Fields

lineno: usize line: Option<String> kind: CrontabFileErrorKind

Trait Implementations

impl Debug for CrontabFileError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl From<Error> for CrontabFileError
[src]

fn from(err: Error) -> CrontabFileError

Performs the conversion.

impl From<CrontabEntryParseError> for CrontabFileError
[src]

fn from(err: CrontabEntryParseError) -> CrontabFileError

Performs the conversion.

impl Error for CrontabFileError
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>

The lower-level cause of this error, if any. Read more

impl Display for CrontabFileError
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.