pub enum BindingSlotDecision<R> {
Available,
Respond(R),
}Expand description
Stage-6 participant binding-slot result, bound to the requesting operation’s response authority.
Variants§
Trait Implementations§
Source§impl<R: Clone> Clone for BindingSlotDecision<R>
impl<R: Clone> Clone for BindingSlotDecision<R>
Source§fn clone(&self) -> BindingSlotDecision<R>
fn clone(&self) -> BindingSlotDecision<R>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<R: Debug> Debug for BindingSlotDecision<R>
impl<R: Debug> Debug for BindingSlotDecision<R>
impl<R: Eq> Eq for BindingSlotDecision<R>
Source§impl<R: PartialEq> PartialEq for BindingSlotDecision<R>
impl<R: PartialEq> PartialEq for BindingSlotDecision<R>
impl<R: PartialEq> StructuralPartialEq for BindingSlotDecision<R>
Auto Trait Implementations§
impl<R> Freeze for BindingSlotDecision<R>where
R: Freeze,
impl<R> RefUnwindSafe for BindingSlotDecision<R>where
R: RefUnwindSafe,
impl<R> Send for BindingSlotDecision<R>where
R: Send,
impl<R> Sync for BindingSlotDecision<R>where
R: Sync,
impl<R> Unpin for BindingSlotDecision<R>where
R: Unpin,
impl<R> UnsafeUnpin for BindingSlotDecision<R>where
R: UnsafeUnpin,
impl<R> UnwindSafe for BindingSlotDecision<R>where
R: 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