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>),
}