pub type Result<T> = Result<T, Error>;
Result type alias for the Asana CLI library, carrying the typed Error.
Error
The binary edge does not use this alias; it imports its own edge-level Result directly and collapses Error via ? (the edge error crate converts any std::error::Error).
Result
?
std::error::Error
pub enum Result<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value