Struct binary_tree::cow::ArcCow [] [src]

pub struct ArcCow<T>(pub Arc<T>);

Methods

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

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

Trait Implementations

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

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

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

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

type Target = T

fn deref(&self) -> &T

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

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