pub enum RemoteExpectedOperationRecovery {
Recovered(RemoteParticipantOperation),
NotAvailable {
already_issued: bool,
},
}Expand description
Result of releasing a committed cold-restored operation.
Variants§
Recovered(RemoteParticipantOperation)
One unissued operation authority was recovered.
NotAvailable
No recoverable operation exists.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RemoteExpectedOperationRecovery
impl RefUnwindSafe for RemoteExpectedOperationRecovery
impl Send for RemoteExpectedOperationRecovery
impl Sync for RemoteExpectedOperationRecovery
impl Unpin for RemoteExpectedOperationRecovery
impl UnsafeUnpin for RemoteExpectedOperationRecovery
impl UnwindSafe for RemoteExpectedOperationRecovery
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