Struct binaryninja::architecture::CoreFlagGroup
source · pub struct CoreFlagGroup(/* private fields */);
Trait Implementations§
source§impl Clone for CoreFlagGroup
impl Clone for CoreFlagGroup
source§fn clone(&self) -> CoreFlagGroup
fn clone(&self) -> CoreFlagGroup
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl FlagGroup for CoreFlagGroup
impl FlagGroup for CoreFlagGroup
type FlagType = CoreFlag
type FlagClass = CoreFlagClass
fn name(&self) -> Cow<'_, str>
source§fn flags_required(&self) -> Vec<CoreFlag>
fn flags_required(&self) -> Vec<CoreFlag>
Returns the list of flags that need to be resolved in order
to take the clean flag resolution path – at time of writing,
all required flags must have been set by the same instruction,
and the ‘querying’ instruction must be reachable from one
instruction that sets all of these flags.
source§fn flag_conditions(&self) -> HashMap<CoreFlagClass, FlagCondition>
fn flag_conditions(&self) -> HashMap<CoreFlagClass, FlagCondition>
Returns the mapping of Semantic Flag Classes to Flag Conditions,
in the context of this Flag Group. Read more
source§impl PartialEq for CoreFlagGroup
impl PartialEq for CoreFlagGroup
source§fn eq(&self, other: &CoreFlagGroup) -> bool
fn eq(&self, other: &CoreFlagGroup) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for CoreFlagGroup
impl Eq for CoreFlagGroup
impl StructuralPartialEq for CoreFlagGroup
Auto Trait Implementations§
impl RefUnwindSafe for CoreFlagGroup
impl !Send for CoreFlagGroup
impl !Sync for CoreFlagGroup
impl Unpin for CoreFlagGroup
impl UnwindSafe for CoreFlagGroup
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more