[][src]Enum bcc::BccError

pub enum BccError {
    AttachKprobe {
        name: String,
    },
    AttachKretprobe {
        name: String,
    },
    AttachPerfEvent {
        event: Event,
    },
    AttachRawTracepoint {
        name: String,
    },
    AttachTracepoint {
        subsys: String,
        name: String,
    },
    AttachUprobe {
        name: String,
    },
    AttachUretprobe {
        name: String,
    },
    BccVersionTooLow {
        cause: String,
        min_version: String,
    },
    Compilation,
    IoError(Error),
    InvalidKprobe {
        message: String,
    },
    InvalidPerfEvent {
        message: String,
    },
    InvalidRawTracepoint {
        message: String,
    },
    InvalidTracepoint {
        message: String,
    },
    InvalidUprobe {
        message: String,
    },
    InitializePerfMap,
    InvalidCpuRange {
        range: String,
    },
    Loading {
        name: String,
    },
    NullString(NulError),
    OpenPerfBuffer,
    OpenPerfEvent {
        event: Event,
        message: String,
    },
    DeleteTableValue,
    GetTableValue,
    SetTableValue,
    TableInvalidSize,
    UnknownSymbol {
        name: String,
        module: String,
    },
    Utf8Error(Utf8Error),
}

Variants

AttachKprobe

Fields of AttachKprobe

name: String
AttachKretprobe

Fields of AttachKretprobe

name: String
AttachPerfEvent

Fields of AttachPerfEvent

event: Event
AttachRawTracepoint

Fields of AttachRawTracepoint

name: String
AttachTracepoint

Fields of AttachTracepoint

subsys: Stringname: String
AttachUprobe

Fields of AttachUprobe

name: String
AttachUretprobe

Fields of AttachUretprobe

name: String
BccVersionTooLow

Fields of BccVersionTooLow

cause: Stringmin_version: String
Compilation
IoError(Error)
InvalidKprobe

Fields of InvalidKprobe

message: String
InvalidPerfEvent

Fields of InvalidPerfEvent

message: String
InvalidRawTracepoint

Fields of InvalidRawTracepoint

message: String
InvalidTracepoint

Fields of InvalidTracepoint

message: String
InvalidUprobe

Fields of InvalidUprobe

message: String
InitializePerfMap
InvalidCpuRange

Fields of InvalidCpuRange

range: String
Loading

Fields of Loading

name: String
NullString(NulError)
OpenPerfBuffer
OpenPerfEvent

Fields of OpenPerfEvent

event: Eventmessage: String
DeleteTableValue
GetTableValue
SetTableValue
TableInvalidSize
UnknownSymbol

Fields of UnknownSymbol

name: Stringmodule: String
Utf8Error(Utf8Error)

Trait Implementations

impl Debug for BccError[src]

impl Display for BccError[src]

impl Error for BccError[src]

impl From<Error> for BccError[src]

impl From<NulError> for BccError[src]

impl From<Utf8Error> for BccError[src]

Auto Trait Implementations

impl !RefUnwindSafe for BccError

impl Send for BccError

impl Sync for BccError

impl Unpin for BccError

impl !UnwindSafe for BccError

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.