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