Struct binary_tree::cow::RcCow [] [src]

pub struct RcCow<T>(pub Rc<T>);

Methods

impl<T: Clone> RcCow<T>
[src]

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

Trait Implementations

impl<T> Clone for RcCow<T>
[src]

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

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

impl<T> Deref for RcCow<T>
[src]

type Target = T

fn deref(&self) -> &T

impl<T: Clone> DerefMut for RcCow<T>
[src]

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