[][src]Struct gluon::compiler_pipeline::CompileValue

pub struct CompileValue<E> {
    pub expr: E,
    pub core_expr: Global<CoreExpr>,
    pub typ: ArcType,
    pub metadata: Arc<Metadata>,
    pub module: CompiledModule,
}

Result of successful compilation

Fields

expr: Ecore_expr: Global<CoreExpr>typ: ArcTypemetadata: Arc<Metadata>module: CompiledModule

Implementations

impl<E> CompileValue<E>[src]

pub fn map<F>(self, f: impl FnOnce(E) -> F) -> CompileValue<F>[src]

Trait Implementations

impl<E: Debug> Debug for CompileValue<E>[src]

impl<'vm, E> Executable<'vm, ()> for CompileValue<E> where
    E: Send + 'vm, 
[src]

type Expr = E

Auto Trait Implementations

impl<E> !RefUnwindSafe for CompileValue<E>

impl<E> Send for CompileValue<E> where
    E: Send

impl<E> Sync for CompileValue<E> where
    E: Sync

impl<E> Unpin for CompileValue<E> where
    E: Unpin

impl<E> !UnwindSafe for CompileValue<E>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<Id> AsId<Id> for Id where
    Id: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'_, T> Captures<'_> for T[src]

impl<Choices> CoproductSubsetter<CNil, HNil> for Choices

type Remainder = Choices

impl<T> Downcast for T where
    T: Any

impl<T> DowncastArc for T where
    T: Downcast + Send + Sync
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<'vm, C, Extra> Executable<'vm, Extra> for C where
    C: Compileable<Extra> + Send,
    Extra: Send,
    <C as Compileable<Extra>>::Expr: Send,
    <C as Compileable<Extra>>::Expr: 'vm, 
[src]

type Expr = <C as Compileable<Extra>>::Expr

impl<T> From<T> for T[src]

impl<D, T> FromPtr<D> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U, I> LiftInto<U, I> for T where
    U: LiftFrom<T, I>, 

impl<Source> Sculptor<HNil, HNil> for Source

type Remainder = Source

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,