pub enum StoreAckError {
Database(DbError),
Protocol(StoreProtocolError),
PublishCountExhausted,
Object(StoreObjectError),
InvalidOutbound(String),
PreparedCommit(PreparedCommitError),
Outbound(StoreError),
SyncCycle(Box<SyncCycleFailure>),
WriterAuthorization(Box<StoreWriterAuthorizationError>),
Snapshot(SnapshotError),
}Variants§
Database(DbError)
Protocol(StoreProtocolError)
PublishCountExhausted
Object(StoreObjectError)
InvalidOutbound(String)
PreparedCommit(PreparedCommitError)
Outbound(StoreError)
SyncCycle(Box<SyncCycleFailure>)
WriterAuthorization(Box<StoreWriterAuthorizationError>)
Snapshot(SnapshotError)
Trait Implementations§
Source§impl Debug for StoreAckError
impl Debug for StoreAckError
Source§impl Display for StoreAckError
impl Display for StoreAckError
Source§impl Error for StoreAckError
impl Error for StoreAckError
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<DbError> for StoreAckError
impl From<DbError> for StoreAckError
Source§impl From<PreparedCommitError> for StoreAckError
impl From<PreparedCommitError> for StoreAckError
Source§fn from(source: PreparedCommitError) -> Self
fn from(source: PreparedCommitError) -> Self
Converts to this type from the input type.
Source§impl From<StoreAckError> for StoreReclaimError
impl From<StoreAckError> for StoreReclaimError
Source§fn from(error: StoreAckError) -> Self
fn from(error: StoreAckError) -> Self
Converts to this type from the input type.
Source§impl From<StoreAckError> for TestError
impl From<StoreAckError> for TestError
Source§fn from(source: StoreAckError) -> Self
fn from(source: StoreAckError) -> Self
Converts to this type from the input type.
Source§impl From<StoreError> for StoreAckError
impl From<StoreError> for StoreAckError
Source§fn from(source: StoreError) -> Self
fn from(source: StoreError) -> Self
Converts to this type from the input type.
Source§impl From<StoreObjectError> for StoreAckError
impl From<StoreObjectError> for StoreAckError
Source§fn from(source: StoreObjectError) -> Self
fn from(source: StoreObjectError) -> Self
Converts to this type from the input type.
Source§impl From<StoreProtocolError> for StoreAckError
impl From<StoreProtocolError> for StoreAckError
Source§fn from(source: StoreProtocolError) -> Self
fn from(source: StoreProtocolError) -> Self
Converts to this type from the input type.
Source§impl From<StoreWriterAuthorizationError> for StoreAckError
impl From<StoreWriterAuthorizationError> for StoreAckError
Source§fn from(error: StoreWriterAuthorizationError) -> Self
fn from(error: StoreWriterAuthorizationError) -> Self
Converts to this type from the input type.
Source§impl From<SyncCycleFailure> for StoreAckError
impl From<SyncCycleFailure> for StoreAckError
Source§fn from(error: SyncCycleFailure) -> Self
fn from(error: SyncCycleFailure) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StoreAckError
impl !RefUnwindSafe for StoreAckError
impl Send for StoreAckError
impl Sync for StoreAckError
impl Unpin for StoreAckError
impl UnsafeUnpin for StoreAckError
impl !UnwindSafe for StoreAckError
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moreCreates a shared type from an unshared type.