pub enum RcWeakResolver<T> {
    None,
    Some(RcResolver<T>),
}Expand description
The resolver for rc::Weak.
Variants§
Auto Trait Implementations§
impl<T> Freeze for RcWeakResolver<T>where
    T: Freeze,
impl<T> RefUnwindSafe for RcWeakResolver<T>where
    T: RefUnwindSafe,
impl<T> Send for RcWeakResolver<T>where
    T: Send,
impl<T> Sync for RcWeakResolver<T>where
    T: Sync,
impl<T> Unpin for RcWeakResolver<T>where
    T: Unpin,
impl<T> UnwindSafe for RcWeakResolver<T>where
    T: UnwindSafe,
Blanket Implementations§
Source§impl<T> ArchivePointee for T
 
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
 
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
    _: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
 
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more