pub type Result<T, E = NodeError> = Result<T, E>;
Alias of Result with NodeError error type
Result
NodeError
pub enum Result<T, E = NodeError> { Ok(T), Err(E), }
Contains the success value
Contains the error value