pub type Result<T> = Result<T, CodeSpawnError>;Expand description
Result type used throughout the crate.
Aliased Type§
enum Result<T> {
Ok(T),
Err(CodeSpawnError),
}pub type Result<T> = Result<T, CodeSpawnError>;Result type used throughout the crate.
enum Result<T> {
Ok(T),
Err(CodeSpawnError),
}