[][src]Struct bcc_sys::bccapi::mod_info

#[repr(C)]pub struct mod_info {
    pub name: *mut c_char,
    pub start_addr: u64,
    pub end_addr: u64,
    pub file_offset: c_ulonglong,
    pub dev_major: u64,
    pub dev_minor: u64,
    pub inode: u64,
}

Fields

name: *mut c_charstart_addr: u64end_addr: u64file_offset: c_ulonglongdev_major: u64dev_minor: u64inode: u64

Trait Implementations

impl Clone for mod_info[src]

impl Copy for mod_info[src]

impl Debug for mod_info[src]

impl Default for mod_info[src]

impl Eq for mod_info[src]

impl Hash for mod_info[src]

impl Ord for mod_info[src]

impl PartialEq<mod_info> for mod_info[src]

impl PartialOrd<mod_info> for mod_info[src]

impl StructuralEq for mod_info[src]

impl StructuralPartialEq for mod_info[src]

Auto Trait Implementations

impl RefUnwindSafe for mod_info

impl !Send for mod_info

impl !Sync for mod_info

impl Unpin for mod_info

impl UnwindSafe for mod_info

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.