pub enum LogPublisherError {
BufferPoisoned,
}Variants§
BufferPoisoned
Trait Implementations§
Source§impl Clone for LogPublisherError
impl Clone for LogPublisherError
Source§fn clone(&self) -> LogPublisherError
fn clone(&self) -> LogPublisherError
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 moreSource§impl Debug for LogPublisherError
impl Debug for LogPublisherError
Source§impl Display for LogPublisherError
impl Display for LogPublisherError
impl Eq for LogPublisherError
Source§impl Error for LogPublisherError
impl Error for LogPublisherError
1.30.0 · 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 PartialEq for LogPublisherError
impl PartialEq for LogPublisherError
Source§fn eq(&self, other: &LogPublisherError) -> bool
fn eq(&self, other: &LogPublisherError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LogPublisherError
Auto Trait Implementations§
impl Freeze for LogPublisherError
impl RefUnwindSafe for LogPublisherError
impl Send for LogPublisherError
impl Sync for LogPublisherError
impl Unpin for LogPublisherError
impl UnsafeUnpin for LogPublisherError
impl UnwindSafe for LogPublisherError
Blanket Implementations§
Source§impl<T> AggregateBuilder for T
impl<T> AggregateBuilder for T
fn aggregate<A: Aggregate>(self) -> AggregateRepository<Self, A>
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> Queueable for T
impl<T> Queueable for T
Source§fn queued(self) -> QueuedRepository<Self, InMemoryLockManager>
fn queued(self) -> QueuedRepository<Self, InMemoryLockManager>
Wrap with the default async lock manager. Pair with
.aggregate::<T>() for per-aggregate serialization over the async
repository surface.Source§fn queued_with<L: LockManager>(
self,
lock_manager: L,
) -> QueuedRepository<Self, L>
fn queued_with<L: LockManager>( self, lock_manager: L, ) -> QueuedRepository<Self, L>
Wrap with a custom async lock manager.