pub struct PendingDecision<O> { /* private fields */ }Expand description
An evaluated decision awaiting required persistence, not an authorization token.
The event is immutable. Retry its write using the same value, including its observation time and occurrence identity. A new evaluation is a new event.
Implementations§
Source§impl<O> PendingDecision<O>
impl<O> PendingDecision<O>
Trait Implementations§
Source§impl<O: Clone> Clone for PendingDecision<O>
impl<O: Clone> Clone for PendingDecision<O>
Source§fn clone(&self) -> PendingDecision<O>
fn clone(&self) -> PendingDecision<O>
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 moreAuto Trait Implementations§
impl<O> Freeze for PendingDecision<O>
impl<O> RefUnwindSafe for PendingDecision<O>where
Decision<O>: RefUnwindSafe,
impl<O> Send for PendingDecision<O>
impl<O> Sync for PendingDecision<O>
impl<O> Unpin for PendingDecision<O>
impl<O> UnsafeUnpin for PendingDecision<O>where
Decision<O>: UnsafeUnpin,
impl<O> UnwindSafe for PendingDecision<O>where
Decision<O>: 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