pub type JsResult<'b, T> = NeonResult<Handle<'b, T>>;
Expand description
Shorthand for a NeonResult
that produces JavaScript values.
Aliased Type§
enum JsResult<'b, T> {
Ok(Handle<'b, T>),
Err(Throw),
}
pub type JsResult<'b, T> = NeonResult<Handle<'b, T>>;
Shorthand for a NeonResult
that produces JavaScript values.
enum JsResult<'b, T> {
Ok(Handle<'b, T>),
Err(Throw),
}