pub trait PushBorrow {
// Required method
fn push_borrow(acccess: &mut Borrow) -> bool;
}Expand description
Required Methods§
Sourcefn push_borrow(acccess: &mut Borrow) -> bool
fn push_borrow(acccess: &mut Borrow) -> bool
Inserts a new borrow and returns true if it was successful.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.