pub type BorrowResult<T = ()> = Result<T, BorrowError>;
Expand description
A result that can be returned from a borrow operation.
Aliased Type§
enum BorrowResult<T = ()> {
Ok(T),
Err(BorrowError),
}
pub type BorrowResult<T = ()> = Result<T, BorrowError>;
A result that can be returned from a borrow operation.
enum BorrowResult<T = ()> {
Ok(T),
Err(BorrowError),
}