pub enum PipeErrorKind {
EmptyStream,
}Expand description
The kind of pipe error that occurred
Variants§
EmptyStream
The cron stream provided a None
Trait Implementations§
Source§impl Debug for PipeErrorKind
impl Debug for PipeErrorKind
Source§impl From<PipeErrorKind> for PipeError
impl From<PipeErrorKind> for PipeError
Source§fn from(kind: PipeErrorKind) -> PipeError
fn from(kind: PipeErrorKind) -> PipeError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PipeErrorKind
impl RefUnwindSafe for PipeErrorKind
impl Send for PipeErrorKind
impl Sync for PipeErrorKind
impl Unpin for PipeErrorKind
impl UnwindSafe for PipeErrorKind
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