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

pub struct Binary {
    pub name: String,
    pub format: Format,
    pub arch: Arch,
    pub entry: u64,
    pub segments: FxHashSet<Segment>,
}

File format agnostic binary

Fields

name: Stringformat: Formatarch: Archentry: u64segments: FxHashSet<Segment>

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

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

impl RefUnwindSafe for Binary

impl Send for Binary

impl Sync for Binary

impl Unpin for Binary

impl UnwindSafe for Binary

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> 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.