Trait atomic_array::IntoOptionArc [−][src]
pub trait IntoOptionArc<T> { fn into_option_arc(self) -> Option<Arc<T>>; }
Required Methods
fn into_option_arc(self) -> Option<Arc<T>>
Implementations on Foreign Types
impl<T> IntoOptionArc<T> for Arc<T>
[src]
impl<T> IntoOptionArc<T> for Arc<T>
fn into_option_arc(self) -> Option<Arc<T>>
[src]
fn into_option_arc(self) -> Option<Arc<T>>
impl<T> IntoOptionArc<T> for Option<Arc<T>>
[src]
impl<T> IntoOptionArc<T> for Option<Arc<T>>
fn into_option_arc(self) -> Option<Arc<T>>
[src]
fn into_option_arc(self) -> Option<Arc<T>>
Implementors
impl<T> IntoOptionArc<T> for T