pub type Result<T> = Result<T, NoahError>;
Result type alias for Noah SDK operations
pub enum Result<T> { Ok(T), Err(NoahError), }
Contains the success value
Contains the error value