Type Alias TryLockResult
pub type TryLockResult<T> = Result<T, TryLockError>;
Expand description
A type alias for the result of a nonblocking locking method.
Aliased Type§
enum TryLockResult<T> {
Ok(T),
Err(TryLockError),
}
pub type TryLockResult<T> = Result<T, TryLockError>;
A type alias for the result of a nonblocking locking method.
enum TryLockResult<T> {
Ok(T),
Err(TryLockError),
}