[][src]Struct ddbug_parser::Segment

pub struct Segment<'input> {
    pub address: u64,
    pub bytes: &'input [u8],
}

A loadable range of bytes.

Fields

address: u64

The address that the bytes should be loaded at.

bytes: &'input [u8]

The bytes, which may be code or data.

Trait Implementations

impl<'input> Debug for Segment<'input>[src]

Auto Trait Implementations

impl<'input> RefUnwindSafe for Segment<'input>[src]

impl<'input> Send for Segment<'input>[src]

impl<'input> Sync for Segment<'input>[src]

impl<'input> Unpin for Segment<'input>[src]

impl<'input> UnwindSafe for Segment<'input>[src]

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