[][src]Struct unwind::AddressSpace

pub struct AddressSpace<T>(_, _);

An address space upon which unwinding can be performed.

Implementations

impl<T> AddressSpace<T>[src]

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

Creates a new AddressSpace.

Trait Implementations

impl<T> Deref for AddressSpace<T>[src]

type Target = AddressSpaceRef<T>

The resulting type after dereferencing.

impl<T> DerefMut for AddressSpace<T>[src]

impl<T> Drop for AddressSpace<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for AddressSpace<T> where
    T: RefUnwindSafe

impl<T> !Send for AddressSpace<T>

impl<T> !Sync for AddressSpace<T>

impl<T> Unpin for AddressSpace<T> where
    T: Unpin

impl<T> UnwindSafe for AddressSpace<T> where
    T: UnwindSafe

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.