pub enum AsyncProximityHeadCommit<S, T>{
Applied {
snapshot: Box<AsyncProximitySnapshot<S>>,
stats: T,
attempts: usize,
},
Conflict {
current_manifest_cid: Option<Cid>,
attempts: usize,
},
}Expand description
Result of a managed build or mutation commit.
Variants§
Auto Trait Implementations§
impl<S, T> Freeze for AsyncProximityHeadCommit<S, T>
impl<S, T> RefUnwindSafe for AsyncProximityHeadCommit<S, T>
impl<S, T> Send for AsyncProximityHeadCommit<S, T>
impl<S, T> Sync for AsyncProximityHeadCommit<S, T>
impl<S, T> Unpin for AsyncProximityHeadCommit<S, T>
impl<S, T> UnsafeUnpin for AsyncProximityHeadCommit<S, T>
impl<S, T> UnwindSafe for AsyncProximityHeadCommit<S, T>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more