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