Struct stim::MutBorrow[src]
pub struct MutBorrow<'a, T> { // some fields omitted }
Mutable variable borrow
pub struct MutBorrow<'a, T> { // some fields omitted }
Mutable variable borrow
impl<'a, T> Drop for MutBorrow<'a, T>
fn drop(&mut self)
impl<'a, T> Deref<T> for MutBorrow<'a, T>
fn deref<'a>(&'a self) -> &'a T
impl<'a, T> DerefMut<T> for MutBorrow<'a, T>
fn deref_mut<'a>(&'a mut self) -> &'a mut T
Prefix searches with a type followed by a colon (e.g.
fn:
) to restrict the search to a given type.
Accepted types are: fn
, mod
,
struct
(or str
), enum
,
trait
, typedef
(or
tdef
).