Trait IntoShared

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

Convenience trait to add into_shared() to any type

Required Methods§

Source

fn into_shared(self) -> Shared<ContentType>

Implementors§

Source§

impl<ContentType> IntoShared<ContentType> for ContentType