Struct capstone_sys::cs_ac_type
source · [−]#[repr(C)]pub struct cs_ac_type(pub c_uint);Expand description
Common instruction operand access types - to be consistent across all architectures. It is possible to combine access types, for example: CS_AC_READ | CS_AC_WRITE
Tuple Fields
0: c_uintTrait Implementations
sourceimpl BitAnd<cs_ac_type> for cs_ac_type
impl BitAnd<cs_ac_type> for cs_ac_type
type Output = cs_ac_type
type Output = cs_ac_type
The resulting type after applying the & operator.
sourceimpl BitAndAssign<cs_ac_type> for cs_ac_type
impl BitAndAssign<cs_ac_type> for cs_ac_type
sourcefn bitand_assign(&mut self, rhs: cs_ac_type)
fn bitand_assign(&mut self, rhs: cs_ac_type)
Performs the &= operation. Read more
sourceimpl BitOr<cs_ac_type> for cs_ac_type
impl BitOr<cs_ac_type> for cs_ac_type
type Output = cs_ac_type
type Output = cs_ac_type
The resulting type after applying the | operator.
sourceimpl BitOrAssign<cs_ac_type> for cs_ac_type
impl BitOrAssign<cs_ac_type> for cs_ac_type
sourcefn bitor_assign(&mut self, rhs: cs_ac_type)
fn bitor_assign(&mut self, rhs: cs_ac_type)
Performs the |= operation. Read more
sourceimpl Clone for cs_ac_type
impl Clone for cs_ac_type
sourcefn clone(&self) -> cs_ac_type
fn clone(&self) -> cs_ac_type
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for cs_ac_type
impl Debug for cs_ac_type
sourceimpl Hash for cs_ac_type
impl Hash for cs_ac_type
sourceimpl PartialEq<cs_ac_type> for cs_ac_type
impl PartialEq<cs_ac_type> for cs_ac_type
sourcefn eq(&self, other: &cs_ac_type) -> bool
fn eq(&self, other: &cs_ac_type) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &cs_ac_type) -> bool
fn ne(&self, other: &cs_ac_type) -> bool
This method tests for !=.
impl Copy for cs_ac_type
impl Eq for cs_ac_type
impl StructuralEq for cs_ac_type
impl StructuralPartialEq for cs_ac_type
Auto Trait Implementations
impl RefUnwindSafe for cs_ac_type
impl Send for cs_ac_type
impl Sync for cs_ac_type
impl Unpin for cs_ac_type
impl UnwindSafe for cs_ac_type
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more