Type Definition TryLockResult
antidote
type TryLockResult<T> = Result<T, TryLockError>;
Like std::sync::TryLockResult.
std::sync::TryLockResult