pub enum ProbeError {
PlatformUnsupported,
Io(String),
Parse(String),
Sink(String),
}Expand description
Errors a host probe can surface.
Variants§
PlatformUnsupported
The probe’s underlying primitive is not available on this host
platform (e.g. cgroup-v2 files outside Linux). Per d9f3b7a, the
non-Linux build path returns this rather than panicking.
Io(String)
The probe could not read its underlying source (file, endpoint…).
Parse(String)
The probe’s output could not be parsed (e.g. malformed cpu.stat).
Sink(String)
The downstream EventSink rejected the emitted event.
Trait Implementations§
Source§impl Debug for ProbeError
impl Debug for ProbeError
Source§impl Display for ProbeError
impl Display for ProbeError
Source§impl Error for ProbeError
impl Error for ProbeError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<CellosError> for ProbeError
impl From<CellosError> for ProbeError
Source§fn from(err: CellosError) -> Self
fn from(err: CellosError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ProbeError
impl RefUnwindSafe for ProbeError
impl Send for ProbeError
impl Sync for ProbeError
impl Unpin for ProbeError
impl UnsafeUnpin for ProbeError
impl UnwindSafe for ProbeError
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