Trait share::Shareable[][src]

pub trait Shareable<'a> { }

Simple trait that can be implemented for any type via shareable! trait.

Implementations on Foreign Types

impl<'a, T> Shareable<'a> for &'a T where
    T: 'a, 
[src]

References are share-by-copy.

Implementors