pub type VectorResult<T> = Result<T, VectorError>;
pub enum VectorResult<T> { Ok(T), Err(VectorError), }
Contains the success value
Contains the error value