pub enum LogSyncEvent<E> {
Status(LogSyncStatus),
Data(Box<Operation<E>>),
}Expand description
Events emitted from log sync sessions.
Variants§
Status(LogSyncStatus)
Data(Box<Operation<E>>)
Trait Implementations§
Source§impl<E: Clone> Clone for LogSyncEvent<E>
impl<E: Clone> Clone for LogSyncEvent<E>
Source§fn clone(&self) -> LogSyncEvent<E>
fn clone(&self) -> LogSyncEvent<E>
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<E: Debug> Debug for LogSyncEvent<E>
impl<E: Debug> Debug for LogSyncEvent<E>
Source§impl<E> From<LogSyncEvent<E>> for TopicLogSyncEvent<E>
impl<E> From<LogSyncEvent<E>> for TopicLogSyncEvent<E>
Source§fn from(event: LogSyncEvent<E>) -> Self
fn from(event: LogSyncEvent<E>) -> Self
Converts to this type from the input type.
Source§impl<E: PartialEq> PartialEq for LogSyncEvent<E>
impl<E: PartialEq> PartialEq for LogSyncEvent<E>
impl<E> StructuralPartialEq for LogSyncEvent<E>
Auto Trait Implementations§
impl<E> Freeze for LogSyncEvent<E>
impl<E> RefUnwindSafe for LogSyncEvent<E>where
E: RefUnwindSafe,
impl<E> Send for LogSyncEvent<E>where
E: Send,
impl<E> Sync for LogSyncEvent<E>where
E: Sync,
impl<E> Unpin for LogSyncEvent<E>
impl<E> UnwindSafe for LogSyncEvent<E>where
E: UnwindSafe,
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