pub type Result<T> = Result<T, VisError>;
The result type that uses VisError as the error type.
pub enum Result<T> { Ok(T), Err(VisError), }
Contains the success value
Contains the error value