pub enum ParkPrepare {
Notified,
Prepared(ParkTicket),
}Expand description
Result of publishing the PARKING phase.
Variants§
Notified
A preceding notification was consumed, so the caller must not block.
Prepared(ParkTicket)
The caller published PARKING and may proceed to the commit phase.
Trait Implementations§
Source§impl Debug for ParkPrepare
impl Debug for ParkPrepare
impl Eq for ParkPrepare
Source§impl PartialEq for ParkPrepare
impl PartialEq for ParkPrepare
impl StructuralPartialEq for ParkPrepare
Auto Trait Implementations§
impl Freeze for ParkPrepare
impl RefUnwindSafe for ParkPrepare
impl Send for ParkPrepare
impl Sync for ParkPrepare
impl Unpin for ParkPrepare
impl UnsafeUnpin for ParkPrepare
impl UnwindSafe for ParkPrepare
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