[][src]Struct cranelift_faerie::FaerieBackend

pub struct FaerieBackend { /* fields omitted */ }

A FaerieBackend implements Backend and emits ".o" files using the faerie library.

See the FaerieBuilder for a convenient way to construct FaerieBackend instances.

Trait Implementations

impl Backend for FaerieBackend[src]

type Builder = FaerieBuilder

A builder for constructing Backend instances.

type CompiledFunction = FaerieCompiledFunction

The results of compiling a function.

type CompiledData = FaerieCompiledData

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 = FaerieProduct

The returned value here provides functions for emitting object files to memory and files.

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

Create a new FaerieBackend 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.