pub type Result<T> = Result<T, RemDbError>;
结果类型
pub enum Result<T> { Ok(T), Err(RemDbError), }
Contains the success value
Contains the error value