[][src]Struct libunwind_rs::AddressSpace

#[repr(transparent)]pub struct AddressSpace(_);

Struct represents an address space of unwinding procces

Methods

impl AddressSpace[src]

pub fn new(
    accessors: &Accessors,
    byteorder: Byteorder
) -> Result<AddressSpace, Error>
[src]

Method constructs AddressSpace from given accessors and byteorder

Arguments

  • accessors - Bunch of Accessors functions (Ptrace, Coredump)

  • byteorder - Endianess of target machine

Trait Implementations

impl AsMut<AddressSpaceRef> for AddressSpace[src]

impl AsRef<AddressSpaceRef> for AddressSpace[src]

impl Borrow<AddressSpaceRef> for AddressSpace[src]

impl BorrowMut<AddressSpaceRef> for AddressSpace[src]

impl Deref for AddressSpace[src]

type Target = AddressSpaceRef

The resulting type after dereferencing.

impl DerefMut for AddressSpace[src]

impl Drop for AddressSpace[src]

impl ForeignType for AddressSpace[src]

type CType = unw_addr_space

The raw C type.

type Ref = AddressSpaceRef

The type representing a reference to this type.

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