pub struct CoreFlagGroup { /* private fields */ }
Implementations§
source§impl CoreFlagGroup
impl CoreFlagGroup
pub fn new(arch: CoreArchitecture, id: FlagGroupId) -> Option<Self>
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 Debug for CoreFlagGroup
impl Debug for CoreFlagGroup
source§impl FlagGroup for CoreFlagGroup
impl FlagGroup for CoreFlagGroup
type FlagType = CoreFlag
type FlagClass = CoreFlagClass
fn name(&self) -> Cow<'_, str>
source§fn id(&self) -> FlagGroupId
fn id(&self) -> FlagGroupId
Unique identifier for this
FlagGroup
. Read moresource§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
impl Copy for CoreFlagGroup
impl Eq for CoreFlagGroup
impl StructuralPartialEq for CoreFlagGroup
Auto Trait Implementations§
impl Freeze for CoreFlagGroup
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