Trait IntoShared

Source
pub trait IntoShared<T> {
    // Required method
    fn into_shared(self) -> Shared<T>;
}
Expand description

Convenience trait to add into_shared() to any type

Required Methods§

Source

fn into_shared(self) -> Shared<T>

Implementors§

Source§

impl<T> IntoShared<T> for T