pub trait AsGeneric {
    // Provided methods
    fn library(&self) -> Option<Dylib<'_>> { ... }
    fn symbol(&self) -> Option<Symbol<'_>> { ... }
    fn segment(&self) -> Option<Segment<'_>> { ... }
    fn address(&self) -> u64 { ... }
    fn addend(&self) -> i64 { ... }
    fn library_ordinal(&self) -> i32 { ... }
}

Provided Methods§

fn library(&self) -> Option<Dylib<'_>>

fn symbol(&self) -> Option<Symbol<'_>>

fn segment(&self) -> Option<Segment<'_>>

fn address(&self) -> u64

fn addend(&self) -> i64

fn library_ordinal(&self) -> i32

Trait Implementations§

§

impl Debug for &dyn AsGeneric

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Implementors§

§

impl AsGeneric for Chained<'_>

§

impl AsGeneric for Dyld<'_>

§

impl AsGeneric for Generic<'_>