Struct wasmtime_jit::trampoline::TrampolineRelocSink[][src]

pub struct TrampolineRelocSink { /* fields omitted */ }

We don’t expect trampoline compilation to produce many relocations, so this RelocSink just asserts that it doesn’t recieve most of them, but handles libcall ones.

Implementations

impl TrampolineRelocSink[src]

pub fn relocs(&self) -> &[Relocation][src]

Returns collected relocations.

Trait Implementations

impl Default for TrampolineRelocSink[src]

impl RelocSink for TrampolineRelocSink[src]

Auto Trait Implementations

impl RefUnwindSafe for TrampolineRelocSink

impl Send for TrampolineRelocSink

impl Sync for TrampolineRelocSink

impl Unpin for TrampolineRelocSink

impl UnwindSafe for TrampolineRelocSink

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[src]

type Init = T

The type for initializers.

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.