Struct xgadget::binary::Binary[][src]

pub struct Binary { /* fields omitted */ }

File format agnostic binary

Implementations

impl Binary[src]

pub fn from_bytes(name: &str, bytes: &[u8]) -> Result<Binary, Box<dyn Error>>[src]

Byte slice -> Binary

pub fn from_path_str(path: &str) -> Result<Binary, Box<dyn Error>>[src]

Path str -> Binary

pub fn name(&self) -> &str[src]

Get name

pub fn format(&self) -> Format[src]

Get format

pub fn arch(&self) -> Arch[src]

Get arch

pub fn set_arch(&mut self, arch: Arch)[src]

Set arch

pub fn entry(&self) -> u64[src]

Get entry point

pub fn param_regs(&self) -> &Option<&'static [Register]>[src]

Get param registers

pub fn segments(&self) -> &HashSet<Segment>[src]

Get segments

pub fn bits(&self) -> u32[src]

Binary -> bitness

pub fn set_color_display(&mut self, enable: bool)[src]

Enable/disable colored Display

Trait Implementations

impl Clone for Binary[src]

impl Debug for Binary[src]

impl Display for Binary[src]

impl Eq for Binary[src]

impl PartialEq<Binary> for Binary[src]

impl StructuralEq for Binary[src]

impl StructuralPartialEq for Binary[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> Pointable for T

type Init = T

The type for initializers.

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.