Struct dof::dof::Probe[][src]

pub struct Probe {
    pub name: String,
    pub function: String,
    pub address: u64,
    pub offsets: Vec<u32>,
    pub enabled_offsets: Vec<u32>,
    pub arguments: Vec<String>,
}

Information about a single DTrace probe

Fields

name: String

Name of this probe

function: String

Name of the function containing this probe

address: u64

Address or offset in the resulting object code

offsets: Vec<u32>

Offsets in containing function at which this probe occurs.

enabled_offsets: Vec<u32>

Offsets in the containing function at which this probe’s is-enabled functions occur.

arguments: Vec<String>

Type information for each argument

Trait Implementations

impl Clone for Probe[src]

impl Debug for Probe[src]

Auto Trait Implementations

impl RefUnwindSafe for Probe

impl Send for Probe

impl Sync for Probe

impl Unpin for Probe

impl UnwindSafe for Probe

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.