binaryninja::data_notification

Struct DataNotificationTriggers

source
pub struct DataNotificationTriggers { /* private fields */ }
Expand description

Used to describe which call should be triggered. By default, all calls are disabled.

Used by CustomDataNotification::register

Implementations§

source§

impl DataNotificationTriggers

source

pub fn notification_barrier(self) -> Self

source

pub fn data_written(self) -> Self

source

pub fn data_inserted(self) -> Self

source

pub fn data_removed(self) -> Self

source

pub fn function_added(self) -> Self

source

pub fn function_removed(self) -> Self

source

pub fn function_updated(self) -> Self

source

pub fn function_update_requested(self) -> Self

source

pub fn data_variable_added(self) -> Self

source

pub fn data_variable_removed(self) -> Self

source

pub fn data_variable_updated(self) -> Self

source

pub fn data_metadata_updated(self) -> Self

source

pub fn tag_type_updated(self) -> Self

source

pub fn tag_added(self) -> Self

source

pub fn tag_removed(self) -> Self

source

pub fn tag_updated(self) -> Self

source

pub fn symbol_added(self) -> Self

source

pub fn symbol_removed(self) -> Self

source

pub fn symbol_updated(self) -> Self

source

pub fn string_found(self) -> Self

source

pub fn string_removed(self) -> Self

source

pub fn type_defined(self) -> Self

source

pub fn type_undefined(self) -> Self

source

pub fn type_reference_changed(self) -> Self

source

pub fn type_field_reference_changed(self) -> Self

source

pub fn segment_added(self) -> Self

source

pub fn segment_removed(self) -> Self

source

pub fn segment_updated(self) -> Self

source

pub fn section_added(self) -> Self

source

pub fn section_removed(self) -> Self

source

pub fn section_updated(self) -> Self

source

pub fn component_name_updated(self) -> Self

source

pub fn component_added(self) -> Self

source

pub fn component_moved(self) -> Self

source

pub fn component_removed(self) -> Self

source

pub fn component_function_added(self) -> Self

source

pub fn component_function_removed(self) -> Self

source

pub fn component_data_variable_added(self) -> Self

source

pub fn component_data_variable_removed(self) -> Self

source

pub fn external_library_added(self) -> Self

source

pub fn external_library_updated(self) -> Self

source

pub fn external_library_removed(self) -> Self

source

pub fn external_location_added(self) -> Self

source

pub fn external_location_updated(self) -> Self

source

pub fn external_location_removed(self) -> Self

source

pub fn type_archive_attached(self) -> Self

source

pub fn type_archive_detached(self) -> Self

source

pub fn type_archive_connected(self) -> Self

source

pub fn type_archive_disconnected(self) -> Self

source

pub fn undo_entry_added(self) -> Self

source

pub fn undo_entry_taken(self) -> Self

source

pub fn redo_entry_taken(self) -> Self

source

pub fn rebased(self) -> Self

Trait Implementations§

source§

impl Default for DataNotificationTriggers

source§

fn default() -> DataNotificationTriggers

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.