binaryninja::architecture

Trait Intrinsic

source
pub trait Intrinsic:
    Debug
    + Sized
    + Clone
    + Copy {
    // Required methods
    fn name(&self) -> Cow<'_, str>;
    fn id(&self) -> IntrinsicId;
    fn inputs(&self) -> Vec<NameAndType>;
    fn outputs(&self) -> Vec<Conf<Ref<Type>>>;

    // Provided method
    fn class(&self) -> BNIntrinsicClass { ... }
}

Required Methods§

source

fn name(&self) -> Cow<'_, str>

source

fn id(&self) -> IntrinsicId

Unique identifier for this Intrinsic.

source

fn inputs(&self) -> Vec<NameAndType>

List of the input names and types for this intrinsic.

source

fn outputs(&self) -> Vec<Conf<Ref<Type>>>

List of the output types for this intrinsic.

Provided Methods§

source

fn class(&self) -> BNIntrinsicClass

The intrinsic class for this Intrinsic.

Object Safety§

This trait is not object safe.

Implementors§