pub type RsonResult<T> = Result<T, RsonError>;
Result type alias for RSON operations.
pub enum RsonResult<T> { Ok(T), Err(RsonError), }
Contains the success value
Contains the error value