pub trait IntoOptionalRc<T: ?Sized> {
    fn into_optional_rc(self) -> Option<Rc<T>>;
}

Required methods

Implementations on Foreign Types

Implementors