Trait atomic_array::IntoOptionArc[][src]

pub trait IntoOptionArc<T> {
    fn into_option_arc(self) -> Option<Arc<T>>;
}

Required Methods

Implementations on Foreign Types

impl<T> IntoOptionArc<T> for Arc<T>
[src]

impl<T> IntoOptionArc<T> for Option<Arc<T>>
[src]

Implementors