pub enum ManifestPutOutcome {
Stored,
PreconditionFailed,
}Expand description
Result of a conditional task-manifest write.
Variants§
Stored
The manifest was stored.
PreconditionFailed
The supplied entity-tag precondition did not match.
Trait Implementations§
Source§impl Clone for ManifestPutOutcome
impl Clone for ManifestPutOutcome
Source§fn clone(&self) -> ManifestPutOutcome
fn clone(&self) -> ManifestPutOutcome
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 moreimpl Copy for ManifestPutOutcome
Source§impl Debug for ManifestPutOutcome
impl Debug for ManifestPutOutcome
impl Eq for ManifestPutOutcome
Source§impl PartialEq for ManifestPutOutcome
impl PartialEq for ManifestPutOutcome
impl StructuralPartialEq for ManifestPutOutcome
Auto Trait Implementations§
impl Freeze for ManifestPutOutcome
impl RefUnwindSafe for ManifestPutOutcome
impl Send for ManifestPutOutcome
impl Sync for ManifestPutOutcome
impl Unpin for ManifestPutOutcome
impl UnsafeUnpin for ManifestPutOutcome
impl UnwindSafe for ManifestPutOutcome
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