Struct std::rc::Weak [] [src]

pub struct Weak<T> where T: ?Sized {
    _ptr: Shared<RcBox<T>>,
}

A weak version of Rc<T>.

Weak references do not count when determining if the inner value should be dropped.

See the module level documentation for more.

Fields

_ptr

Methods

impl<T> Weak<T> where T: ?Sized

fn upgrade(&self) -> Option<Rc<T>>

Upgrades a weak reference to a strong reference.

Upgrades the Weak<T> reference to an Rc<T>, if possible.

Returns None if there were no strong references and the data was destroyed.

Examples

use std::rc::Rc;

let five = Rc::new(5);

let weak_five = Rc::downgrade(&five);

let strong_five: Option<Rc<_>> = weak_five.upgrade();

impl<T> Weak<T>

fn new() -> Weak<T>

Unstable (downgraded_weak)

: recently added

Constructs a new Weak<T> without an accompanying instance of T.

This allocates memory for T, but does not initialize it. Calling Weak::upgrade() on the return value always gives None.

Examples

#![feature(downgraded_weak)]

use std::rc::Weak;

let empty: Weak<i64> = Weak::new();

Trait Implementations

impl<T> !Send for Weak<T> where T: ?Sized

impl<T> !Sync for Weak<T> where T: ?Sized

impl<T, U> CoerceUnsized<Weak<U>> for Weak<T> where T: Unsize<U> + ?Sized, U: ?Sized

impl<T> Drop for Weak<T> where T: ?Sized

fn drop(&mut self)

impl<T> Clone for Weak<T> where T: ?Sized

fn clone(&self) -> Weak<T>

fn clone_from(&mut self, source: &Self)

impl<T> Debug for Weak<T> where T: Debug + ?Sized

fn fmt(&self, f: &mut Formatter) -> Result<(), Error>