CompiledArgument

Type Alias CompiledArgument 

Source
pub type CompiledArgument = Result<Option<Box<dyn Any + Send + Sync>>, Box<dyn DiagnosticMessage>>;

Aliased Type§

pub enum CompiledArgument {
    Ok(Option<Box<dyn Any + Send + Sync>>),
    Err(Box<dyn DiagnosticMessage>),
}

Variants§

§1.0.0

Ok(Option<Box<dyn Any + Send + Sync>>)

Contains the success value

§1.0.0

Err(Box<dyn DiagnosticMessage>)

Contains the error value