PushBorrow

Trait PushBorrow 

Source
pub trait PushBorrow {
    // Required method
    fn push_borrow(acccess: &mut Borrow) -> bool;
}
Expand description

Is implemented for Read and Write and is used to insert reads and writes into the correct HashSet.

Required Methods§

Source

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.

Implementors§