enum State<F, S> {
Future(F),
Service(S),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<F, S> Freeze for State<F, S>
impl<F, S> RefUnwindSafe for State<F, S>where
F: RefUnwindSafe,
S: RefUnwindSafe,
impl<F, S> Send for State<F, S>
impl<F, S> Sync for State<F, S>
impl<F, S> Unpin for State<F, S>
impl<F, S> UnwindSafe for State<F, S>where
F: UnwindSafe,
S: 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