Trait capstone::arch::BuildsCapstone [] [src]

pub trait BuildsCapstone<ArchMode> {
    fn mode(self, mode: ArchMode) -> Self;
fn detail(self, enable_detail: bool) -> Self;
fn build<'a>(self) -> CsResult<Capstone<'a>>; }

Builds a Capstone struct

Required Methods

Set the disassembly mode

Enable detailed output

Get final Capstone

Implementors