[][src]Struct ep_capstone::arch::InsnGroup

#[repr(transparent)]pub struct InsnGroup(_);

A generic group that can be compared to any architecture specific group. This group may be equal to multiple groups from different architectures but not to multiple groups from the same architecture. This can also be converted into an architecture specific group for any architecture.

Implementations

impl InsnGroup[src]

pub fn x86(self) -> InsnGroup[src]

Convert a generic instruction group to an architecture specific instruction group.

Trait Implementations

impl Clone for InsnGroup[src]

impl Copy for InsnGroup[src]

impl Default for InsnGroup[src]

impl Eq for InsnGroup[src]

impl From<InsnGroup> for InsnGroup[src]

impl From<InsnGroup> for InsnGroup[src]

impl Hash for InsnGroup[src]

impl PartialEq<InsnGroup> for InsnGroup[src]

impl PartialEq<InsnGroup> for InsnGroup[src]

impl PartialEq<InsnGroup> for InsnGroup[src]

impl StructuralEq for InsnGroup[src]

impl StructuralPartialEq for InsnGroup[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.