pub type VizResult<T> = Result<T, VizError>;
Result type used by visualization contracts.
pub enum VizResult<T> { Ok(T), Err(VizError), }
Contains the success value
Contains the error value