[][src]Struct borrow_as::Mut

#[repr(transparent)]pub struct Mut<T: ?Sized>(_);

Mutable reference via Cell.

Methods from Deref<Target = Cell<T>>

pub fn set(&self, val: T)1.0.0[src]

Sets the contained value.

Examples

use std::cell::Cell;

let c = Cell::new(5);

c.set(10);

pub fn swap(&self, other: &Cell<T>)1.17.0[src]

Swaps the values of two Cells. Difference with std::mem::swap is that this function doesn't require &mut reference.

Examples

use std::cell::Cell;

let c1 = Cell::new(5i32);
let c2 = Cell::new(10i32);
c1.swap(&c2);
assert_eq!(10, c1.get());
assert_eq!(5, c2.get());

pub fn replace(&self, val: T) -> T1.17.0[src]

Replaces the contained value, and returns it.

Examples

use std::cell::Cell;

let cell = Cell::new(5);
assert_eq!(cell.get(), 5);
assert_eq!(cell.replace(10), 5);
assert_eq!(cell.get(), 10);

pub fn get(&self) -> T1.0.0[src]

Returns a copy of the contained value.

Examples

use std::cell::Cell;

let c = Cell::new(5);

let five = c.get();

pub fn update<F>(&self, f: F) -> T where
    F: FnOnce(T) -> T, 
[src]

🔬 This is a nightly-only experimental API. (cell_update)

Updates the contained value using a function and returns the new value.

Examples

#![feature(cell_update)]

use std::cell::Cell;

let c = Cell::new(5);
let new = c.update(|x| x + 1);

assert_eq!(new, 6);
assert_eq!(c.get(), 6);

pub const fn as_ptr(&self) -> *mut T1.12.0[src]

Returns a raw pointer to the underlying data in this cell.

Examples

use std::cell::Cell;

let c = Cell::new(5);

let ptr = c.as_ptr();

pub fn take(&self) -> T1.17.0[src]

Takes the value of the cell, leaving Default::default() in its place.

Examples

use std::cell::Cell;

let c = Cell::new(5);
let five = c.take();

assert_eq!(five, 5);
assert_eq!(c.into_inner(), 0);

pub fn as_slice_of_cells(&self) -> &[Cell<T>]1.37.0[src]

Returns a &[Cell<T>] from a &Cell<[T]>

Examples

use std::cell::Cell;

let slice: &mut [i32] = &mut [1, 2, 3];
let cell_slice: &Cell<[i32]> = Cell::from_mut(slice);
let slice_cell: &[Cell<i32>] = cell_slice.as_slice_of_cells();

assert_eq!(slice_cell.len(), 3);

Trait Implementations

impl<T: ?Sized> AsRef<Cell<T>> for Mut<T>[src]

impl<T: ?Sized> Borrow<Cell<T>> for Mut<T>[src]

impl<T: Debug + ?Sized> Debug for Mut<T>[src]

impl<T: ?Sized> Deref for Mut<T>[src]

type Target = Cell<T>

The resulting type after dereferencing.

impl<T: ?Sized> Display for Mut<T> where
    &'a T: Debug
[src]

impl<T: ?Sized> Eq for Mut<T> where
    &'a T: Eq + PartialEq<Self>, 
[src]

impl<T: ?Sized> Hash for Mut<T> where
    &'a T: Hash
[src]

impl<T: ?Sized> Ord for Mut<T> where
    &'a T: Ord + Eq + PartialOrd<Self>, 
[src]

impl<T: ?Sized, U: ?Sized> PartialEq<U> for Mut<T> where
    &'a T: PartialEq<U>, 
[src]

impl<T: ?Sized, U: ?Sized> PartialOrd<U> for Mut<T> where
    &'a T: PartialOrd<U>, 
[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for Mut<T>

impl<T> !Send for Mut<T>

impl<T> !Sync for Mut<T>

impl<T: ?Sized> Unpin for Mut<T>

impl<T> !UnwindSafe for Mut<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.