pub enum MatchRcs<RC> {
NoRcs(NoRcsState),
Rcs(RcsState<RC>),
}Variants§
NoRcs(NoRcsState)
Rcs(RcsState<RC>)
Trait Implementations§
Auto Trait Implementations§
impl<RC> Freeze for MatchRcs<RC>
impl<RC> RefUnwindSafe for MatchRcs<RC>where
RC: RefUnwindSafe,
impl<RC> Send for MatchRcs<RC>where
RC: Send,
impl<RC> Sync for MatchRcs<RC>where
RC: Sync,
impl<RC> Unpin for MatchRcs<RC>where
RC: Unpin,
impl<RC> UnwindSafe for MatchRcs<RC>where
RC: UnwindSafe,
Blanket Implementations§
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