pub enum PayloadAppendSuccess {
Appended,
Completed,
}Expand description
Returned when a payload is successfully appended to the Store.
Variants§
Appended
The payload was appended to but not completed.
Completed
The payload was completed by the appendment.
Trait Implementations§
Source§impl Clone for PayloadAppendSuccess
impl Clone for PayloadAppendSuccess
Source§fn clone(&self) -> PayloadAppendSuccess
fn clone(&self) -> PayloadAppendSuccess
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PayloadAppendSuccess
impl Debug for PayloadAppendSuccess
Source§impl Hash for PayloadAppendSuccess
impl Hash for PayloadAppendSuccess
Source§impl Ord for PayloadAppendSuccess
impl Ord for PayloadAppendSuccess
Source§fn cmp(&self, other: &PayloadAppendSuccess) -> Ordering
fn cmp(&self, other: &PayloadAppendSuccess) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PayloadAppendSuccess
impl PartialEq for PayloadAppendSuccess
Source§impl PartialOrd for PayloadAppendSuccess
impl PartialOrd for PayloadAppendSuccess
impl Copy for PayloadAppendSuccess
impl Eq for PayloadAppendSuccess
impl StructuralPartialEq for PayloadAppendSuccess
Auto Trait Implementations§
impl Freeze for PayloadAppendSuccess
impl RefUnwindSafe for PayloadAppendSuccess
impl Send for PayloadAppendSuccess
impl Sync for PayloadAppendSuccess
impl Unpin for PayloadAppendSuccess
impl UnwindSafe for PayloadAppendSuccess
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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