Struct jrsonnet_gc::GcCellRefMut[][src]

pub struct GcCellRefMut<'a, T: Trace + ?Sized + 'static, U: ?Sized = T> { /* fields omitted */ }
Expand description

A wrapper type for a mutably borrowed value from a GcCell<T>.

Implementations

Makes a new GcCellRefMut for a component of the borrowed data, e.g., an enum variant.

The GcCellRefMut is already mutably borrowed, so this cannot fail.

This is an associated function that needs to be used as GcCellRefMut::map(...). A method would interfere with methods of the same name on the contents of a GcCell used through Deref.

Examples

use jrsonnet_gc::{GcCell, GcCellRefMut};

let c = GcCell::new((5, 'b'));
{
    let b1: GcCellRefMut<(u32, char)> = c.borrow_mut();
    let mut b2: GcCellRefMut<(u32, char), u32> = GcCellRefMut::map(b1, |t| &mut t.0);
    assert_eq!(*b2, 5);
    *b2 = 42;
}
assert_eq!(*c.borrow(), (42, 'b'));

Trait Implementations

Formats the value using the given formatter. Read more

The resulting type after dereferencing.

Dereferences the value.

Mutably dereferences the value.

Formats the value using the given formatter. Read more

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.