pub type Result<T> = Result<T, BraidError>;Expand description
Result type for Braid HTTP operations.
Provides a convenient shorthand for Result<T, BraidError>.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(BraidError),
}pub type Result<T> = Result<T, BraidError>;Result type for Braid HTTP operations.
Provides a convenient shorthand for Result<T, BraidError>.
pub enum Result<T> {
Ok(T),
Err(BraidError),
}