[][src]Struct cranelift_object::ObjectBackend

pub struct ObjectBackend { /* fields omitted */ }

A ObjectBackend implements Backend and emits ".o" files using the object library.

See the ObjectBuilder for a convenient way to construct ObjectBackend instances.

Trait Implementations

impl Backend for ObjectBackend[src]

type Builder = ObjectBuilder

A builder for constructing Backend instances.

type CompiledFunction = ObjectCompiledFunction

The results of compiling a function.

type CompiledData = ObjectCompiledData

The results of "compiling" a data object.

type FinalizedFunction = ()

The completed output artifact for a function, if this is meaningful for the Backend. Read more

type FinalizedData = ()

The completed output artifact for a data object, if this is meaningful for the Backend. Read more

type Product = ObjectProduct

This is an object returned by Module's finish function, if the Backend has a purpose for this. Read more

fn new(builder: ObjectBuilder) -> Self[src]

Create a new ObjectBackend using the given Cranelift target.

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.