pub type Result<T> = Result<T, ViewError>;
Result type used by the view publication API.
pub enum Result<T> { Ok(T), Err(ViewError), }
Contains the success value
Contains the error value