pub enum SupportQuery {
    Arch(Arch),
    AllArch,
    Diet,
    X86Reduce,
}Expand description
Support query that can be used along with supports to check
the current Capstone build’s capabilities.
Variants§
Arch(Arch)
Support query for a specific architecture.
AllArch
Support query for all architectures known to capstone.
Diet
Support query for verifying that the current capstone engine is in diet mode.
X86Reduce
Support query for verifying that the current capstone engine is currently in X86 reduce mode.
Trait Implementations§
Source§impl Clone for SupportQuery
 
impl Clone for SupportQuery
Source§fn clone(&self) -> SupportQuery
 
fn clone(&self) -> SupportQuery
Returns a duplicate 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 SupportQuery
 
impl Debug for SupportQuery
Source§impl From<Arch> for SupportQuery
 
impl From<Arch> for SupportQuery
Source§fn from(arch: Arch) -> SupportQuery
 
fn from(arch: Arch) -> SupportQuery
Converts to this type from the input type.
Source§impl Hash for SupportQuery
 
impl Hash for SupportQuery
Source§impl PartialEq for SupportQuery
 
impl PartialEq for SupportQuery
impl Copy for SupportQuery
impl Eq for SupportQuery
impl StructuralPartialEq for SupportQuery
Auto Trait Implementations§
impl Freeze for SupportQuery
impl RefUnwindSafe for SupportQuery
impl Send for SupportQuery
impl Sync for SupportQuery
impl Unpin for SupportQuery
impl UnwindSafe for SupportQuery
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