pub type Result<T> = Result<T, SparkError>;Expand description
Re-exported so fallible APIs (e.g. the #[spark_wasm_udf]-generated UDF
constructors) can name the client’s Result/error types.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(SparkError),
}