pub type NeoResult<T> = Result<T, NeoError>;
Neo N3 Result type
pub enum NeoResult<T> { Ok(T), Err(NeoError), }
Contains the success value
Contains the error value