Struct std::rc::Rc [] [src]

pub struct Rc<T> where T: ?Sized {
    // some fields omitted
}

A reference-counted pointer type over an immutable value.

See the module level documentation for more details.

Methods

impl<T> Rc<T>

fn new(value: T) -> Rc<T>

Constructs a new Rc<T>.

Examples

fn main() { use std::rc::Rc; let five = Rc::new(5); }
use std::rc::Rc;

let five = Rc::new(5);

fn try_unwrap(rc: Rc<T>) -> Result<T, Rc<T>>

Unstable (rc_unique #27718)

Unwraps the contained value if the Rc<T> is unique.

If the Rc<T> is not unique, an Err is returned with the same Rc<T>.

Examples

#![feature(rc_unique)] fn main() { use std::rc::Rc; let x = Rc::new(3); assert_eq!(Rc::try_unwrap(x), Ok(3)); let x = Rc::new(4); let _y = x.clone(); assert_eq!(Rc::try_unwrap(x), Err(Rc::new(4))); }
#![feature(rc_unique)]

use std::rc::Rc;

let x = Rc::new(3);
assert_eq!(Rc::try_unwrap(x), Ok(3));

let x = Rc::new(4);
let _y = x.clone();
assert_eq!(Rc::try_unwrap(x), Err(Rc::new(4)));

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

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

Unstable (rc_weak #27718)

: Weak pointers may not belong in this module

Downgrades the Rc<T> to a Weak<T> reference.

Examples

#![feature(rc_weak)] fn main() { use std::rc::Rc; let five = Rc::new(5); let weak_five = five.downgrade(); }
#![feature(rc_weak)]

use std::rc::Rc;

let five = Rc::new(5);

let weak_five = five.downgrade();

fn weak_count(this: &Rc<T>) -> usize

Unstable (rc_counts #27718)

Get the number of weak references to this value.

fn strong_count(this: &Rc<T>) -> usize

Unstable (rc_counts #27718)

Get the number of strong references to this value.

fn is_unique(rc: &Rc<T>) -> bool

Unstable (rc_unique #27718)

Returns true if there are no other Rc or Weak<T> values that share the same inner value.

Examples

#![feature(rc_unique)] fn main() { use std::rc::Rc; let five = Rc::new(5); assert!(Rc::is_unique(&five)); }
#![feature(rc_unique)]

use std::rc::Rc;

let five = Rc::new(5);

assert!(Rc::is_unique(&five));

fn get_mut(rc: &mut Rc<T>) -> Option<&mut T>

Unstable (rc_unique #27718)

Returns a mutable reference to the contained value if the Rc<T> is unique.

Returns None if the Rc<T> is not unique.

Examples

#![feature(rc_unique)] fn main() { use std::rc::Rc; let mut x = Rc::new(3); *Rc::get_mut(&mut x).unwrap() = 4; assert_eq!(*x, 4); let _y = x.clone(); assert!(Rc::get_mut(&mut x).is_none()); }
#![feature(rc_unique)]

use std::rc::Rc;

let mut x = Rc::new(3);
*Rc::get_mut(&mut x).unwrap() = 4;
assert_eq!(*x, 4);

let _y = x.clone();
assert!(Rc::get_mut(&mut x).is_none());

impl<T> Rc<T> where T: Clone

fn make_unique(&mut self) -> &mut T

Unstable (rc_unique #27718)

Make a mutable reference from the given Rc<T>.

This is also referred to as a copy-on-write operation because the inner data is cloned if the reference count is greater than one.

Examples

#![feature(rc_unique)] fn main() { use std::rc::Rc; let mut five = Rc::new(5); let mut_five = five.make_unique(); }
#![feature(rc_unique)]

use std::rc::Rc;

let mut five = Rc::new(5);

let mut_five = five.make_unique();

Trait Implementations

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

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

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

impl<T> Deref for Rc<T> where T: ?Sized

type Target = T

fn deref(&self) -> &T

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

fn drop(&mut self)

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

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

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

impl<T> Default for Rc<T> where T: Default

fn default() -> Rc<T>

impl<T> PartialEq<Rc<T>> for Rc<T> where T: PartialEq<T> + ?Sized

fn eq(&self, other: &Rc<T>) -> bool

fn ne(&self, other: &Rc<T>) -> bool

impl<T> Eq for Rc<T> where T: Eq + ?Sized

impl<T> PartialOrd<Rc<T>> for Rc<T> where T: PartialOrd<T> + ?Sized

fn partial_cmp(&self, other: &Rc<T>) -> Option<Ordering>

fn lt(&self, other: &Rc<T>) -> bool

fn le(&self, other: &Rc<T>) -> bool

fn gt(&self, other: &Rc<T>) -> bool

fn ge(&self, other: &Rc<T>) -> bool

impl<T> Ord for Rc<T> where T: Ord + ?Sized

fn cmp(&self, other: &Rc<T>) -> Ordering

impl<T> Hash for Rc<T> where T: Hash + ?Sized

fn hash<H>(&self, state: &mut H) where H: Hasher

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher

impl<T> Display for Rc<T> where T: Display + ?Sized

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

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

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

impl<T> Pointer for Rc<T>

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

impl<T> Borrow<T> for Rc<T> where T: ?Sized

fn borrow(&self) -> &T