[−][src]Struct boa::gc::Ref
A wrapper type for an immutably borrowed value from a GcCell<T>.
Implementations
impl<'a, T> GcCellRef<'a, T> where
T: Trace + ?Sized, [src]
T: Trace + ?Sized,
pub fn map<U, F>(orig: GcCellRef<'a, T>, f: F) -> GcCellRef<'a, U> where
F: FnOnce(&T) -> &U,
U: Trace + ?Sized, [src]
F: FnOnce(&T) -> &U,
U: Trace + ?Sized,
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 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);
pub fn map_split<U, V, F>(
orig: GcCellRef<'a, T>,
f: F
) -> (GcCellRef<'a, U>, GcCellRef<'a, V>) where
F: FnOnce(&T) -> (&U, &V),
U: Trace + ?Sized,
V: Trace + ?Sized, [src]
orig: GcCellRef<'a, T>,
f: F
) -> (GcCellRef<'a, U>, GcCellRef<'a, V>) where
F: FnOnce(&T) -> (&U, &V),
U: Trace + ?Sized,
V: Trace + ?Sized,
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 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
impl<'a, T> Debug for GcCellRef<'a, T> where
T: Trace + Debug + ?Sized, [src]
T: Trace + Debug + ?Sized,
impl<'a, T> Deref for GcCellRef<'a, T> where
T: Trace + ?Sized, [src]
T: Trace + ?Sized,
impl<'a, T> Display for GcCellRef<'a, T> where
T: Trace + Display + ?Sized, [src]
T: Trace + Display + ?Sized,
impl<'a, T> Drop for GcCellRef<'a, T> where
T: Trace + ?Sized, [src]
T: Trace + ?Sized,
Auto Trait Implementations
impl<'a, T> !RefUnwindSafe for GcCellRef<'a, T>
impl<'a, T> !Send for GcCellRef<'a, T>
impl<'a, T> !Sync for GcCellRef<'a, T>
impl<'a, T: ?Sized> Unpin for GcCellRef<'a, T>
impl<'a, T> !UnwindSafe for GcCellRef<'a, T>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,