pub enum KProbeError {
FileError {
filename: PathBuf,
io_error: Error,
},
}Expand description
The type returned when attaching a KProbe fails.
Variants§
FileError
Error detaching from debugfs
Trait Implementations§
Source§impl Debug for KProbeError
impl Debug for KProbeError
Source§impl Display for KProbeError
impl Display for KProbeError
Source§impl Error for KProbeError
impl Error for KProbeError
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<KProbeError> for ProgramError
impl From<KProbeError> for ProgramError
Source§fn from(source: KProbeError) -> Self
fn from(source: KProbeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KProbeError
impl !RefUnwindSafe for KProbeError
impl Send for KProbeError
impl Sync for KProbeError
impl Unpin for KProbeError
impl UnsafeUnpin for KProbeError
impl !UnwindSafe for KProbeError
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