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
RcsState<RC>: RefUnwindSafe,
impl<RC> Send for MatchRcs<RC>
impl<RC> Sync for MatchRcs<RC>
impl<RC> Unpin for MatchRcs<RC>
impl<RC> UnsafeUnpin for MatchRcs<RC>where
RcsState<RC>: UnsafeUnpin,
impl<RC> UnwindSafe for MatchRcs<RC>where
RcsState<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