Trait yaxpeax_core::data::modifier::ModifierCollection[][src]

pub trait ModifierCollection<A: Arch + ValueLocations> {
    fn before(&self, addr: A::Address) -> Vec<(Option<A::Location>, Direction)>;
fn after(&self, addr: A::Address) -> Vec<(Option<A::Location>, Direction)>;
fn between(
        &self,
        addr: A::Address,
        next: A::Address
    ) -> Vec<(Option<A::Location>, Direction)>; }

Required methods

Implementors