Type Alias spacetimedb_lib::error::ResultTest
source · pub type ResultTest<T> = Result<T, TestError>;Expand description
A wrapper for using Result in tests, so it display nicely
Aliased Type§
enum ResultTest<T> {
Ok(T),
Err(TestError),
}