LinkResult

Type Alias LinkResult 

Source
pub type LinkResult<T> = Result<T, Vec<LinkError>>;
Expand description

Result of an attempt to link the provided WebAssembly instance. Aliases the standard Result with Vec<LinkError> as the default error type.

Aliased Type§

pub enum LinkResult<T> {
    Ok(T),
    Err(Vec<LinkError>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Vec<LinkError>)

Contains the error value