pub enum MembershipPreparationError {
Invariant(String),
Json(Error),
ExactObject(StorageError),
}Expand description
A prepared membership mutation whose parts do not bind one exact entry and head. Workflow errors wrap it at the operation boundary.
Variants§
Trait Implementations§
Source§impl Debug for MembershipPreparationError
impl Debug for MembershipPreparationError
Source§impl Display for MembershipPreparationError
impl Display for MembershipPreparationError
Source§impl Error for MembershipPreparationError
impl Error for MembershipPreparationError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<MembershipPreparationError> for PreparedCommitError
impl From<MembershipPreparationError> for PreparedCommitError
Source§fn from(source: MembershipPreparationError) -> Self
fn from(source: MembershipPreparationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MembershipPreparationError
impl !RefUnwindSafe for MembershipPreparationError
impl Send for MembershipPreparationError
impl Sync for MembershipPreparationError
impl Unpin for MembershipPreparationError
impl UnsafeUnpin for MembershipPreparationError
impl !UnwindSafe for MembershipPreparationError
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