Shared

Type Alias Shared 

Source
pub type Shared<T> = Arc<T>;

Aliased Type§

pub struct Shared<T> { /* private fields */ }

Trait Implementations§

Source§

impl<'a, T> From<&'a MaybeRef<T>> for Shared<T>

Source§

fn from(r: &'a MaybeRef<T>) -> Shared<T>

Converts to this type from the input type.
Source§

impl<T> From<MaybeRef<T>> for Shared<T>

Source§

fn from(r: MaybeRef<T>) -> Shared<T>

Converts to this type from the input type.