IntoOptionArc

Trait IntoOptionArc 

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

Required Methods§

Implementations on Foreign Types§

Source§

impl<T> IntoOptionArc<T> for Option<Arc<T>>

Source§

fn into_option_arc(self) -> Self

Source§

impl<T> IntoOptionArc<T> for Arc<T>

Implementors§

Source§

impl<T> IntoOptionArc<T> for T