Struct bcc_sys::bccapi::bcc_usdt_argument[][src]

#[repr(C)]pub struct bcc_usdt_argument {
    pub size: c_int,
    pub valid: c_int,
    pub constant: c_int,
    pub deref_offset: c_int,
    pub deref_ident: *const c_char,
    pub base_register_name: *const c_char,
    pub index_register_name: *const c_char,
    pub scale: c_int,
}

Fields

size: c_intvalid: c_intconstant: c_intderef_offset: c_intderef_ident: *const c_charbase_register_name: *const c_charindex_register_name: *const c_charscale: c_int

Trait Implementations

impl Clone for bcc_usdt_argument[src]

impl Copy for bcc_usdt_argument[src]

impl Debug for bcc_usdt_argument[src]

impl Default for bcc_usdt_argument[src]

impl Eq for bcc_usdt_argument[src]

impl Hash for bcc_usdt_argument[src]

impl Ord for bcc_usdt_argument[src]

impl PartialEq<bcc_usdt_argument> for bcc_usdt_argument[src]

impl PartialOrd<bcc_usdt_argument> for bcc_usdt_argument[src]

impl StructuralEq for bcc_usdt_argument[src]

impl StructuralPartialEq for bcc_usdt_argument[src]

Auto Trait Implementations

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.