Trait sublock::prooflock::ProofBorrowMut [] [src]

pub trait ProofBorrowMut<P, T> {
    fn borrow_mut<'a>(&'a self, proof: &P) -> RefMut<'a, T>;
}

A trait specifying that a structure supports mutable borrowing if some proof is provided.

Required Methods

fn borrow_mut<'a>(&'a self, proof: &P) -> RefMut<'a, T>

Implementors