Struct jrsonnet_gc::GcCellRef[][src]

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

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

Implementations

Copies a GcCellRef.

The GcCell is already immutably borrowed, so this cannot fail.

This is an associated function that needs to be used as GcCellRef::clone(...). A Clone implementation or a method would interfere with the use of c.borrow().clone() to clone the contents of a GcCell.

Makes a new GcCellRef from a component of the borrowed data.

The GcCell is already immutably borrowed, so this cannot fail.

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

Examples

use jrsonnet_gc::{GcCell, GcCellRef};

let c = GcCell::new((5, 'b'));
let b1: GcCellRef<(u32, char)> = c.borrow();
let b2: GcCellRef<u32> = GcCellRef::map(b1, |t| &t.0);
//assert_eq!(b2, 5);

Splits a GcCellRef into multiple GcCellRefs for different components of the borrowed data.

The GcCell is already immutably borrowed, so this cannot fail.

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

Examples

use jrsonnet_gc::{GcCell, GcCellRef};

let cell = GcCell::new((1, 'c'));
let borrow = cell.borrow();
let (first, second) = GcCellRef::map_split(borrow, |x| (&x.0, &x.1));
assert_eq!(*first, 1);
assert_eq!(*second, 'c');

Trait Implementations

Formats the value using the given formatter. Read more

The resulting type after dereferencing.

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.