pub enum LogSyncMessage<L>where
L: LogId,{
Have(LogHeights<VerifyingKey, L>),
PreSync {
total_operations: u32,
total_bytes: u32,
},
Operation(Vec<u8>, Option<Vec<u8>>),
Done,
}Expand description
Protocol messages.
Variants§
Trait Implementations§
Source§impl<L> Clone for LogSyncMessage<L>
impl<L> Clone for LogSyncMessage<L>
Source§fn clone(&self) -> LogSyncMessage<L>
fn clone(&self) -> LogSyncMessage<L>
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<L> Debug for LogSyncMessage<L>
impl<L> Debug for LogSyncMessage<L>
Source§impl<'de, L> Deserialize<'de> for LogSyncMessage<L>where
L: LogId,
impl<'de, L> Deserialize<'de> for LogSyncMessage<L>where
L: LogId,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<L> Display for LogSyncMessage<L>where
L: LogId,
impl<L> Display for LogSyncMessage<L>where
L: LogId,
Source§impl<L> PartialEq for LogSyncMessage<L>
impl<L> PartialEq for LogSyncMessage<L>
Source§fn eq(&self, other: &LogSyncMessage<L>) -> bool
fn eq(&self, other: &LogSyncMessage<L>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<L> Serialize for LogSyncMessage<L>
impl<L> Serialize for LogSyncMessage<L>
Source§impl<S, L, E> Sink<LogSyncMessage<L>> for LogSyncSink<S, L, E>
impl<S, L, E> Sink<LogSyncMessage<L>> for LogSyncSink<S, L, E>
Source§type Error = TopicLogSyncChannelError
type Error = TopicLogSyncChannelError
The type of value produced by the sink when an error occurs.
Source§fn poll_ready(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Result<(), Self::Error>>
fn poll_ready( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Self::Error>>
Attempts to prepare the
Sink to receive a value. Read moreSource§fn start_send(
self: Pin<&mut Self>,
item: LogSyncMessage<L>,
) -> Result<(), Self::Error>
fn start_send( self: Pin<&mut Self>, item: LogSyncMessage<L>, ) -> Result<(), Self::Error>
Begin the process of sending a value to the sink.
Each call to this function must be preceded by a successful call to
poll_ready which returned Poll::Ready(Ok(())). Read moreimpl<L> StructuralPartialEq for LogSyncMessage<L>
Auto Trait Implementations§
impl<L> Freeze for LogSyncMessage<L>
impl<L> RefUnwindSafe for LogSyncMessage<L>where
L: RefUnwindSafe,
impl<L> Send for LogSyncMessage<L>where
L: Send,
impl<L> Sync for LogSyncMessage<L>where
L: Sync,
impl<L> Unpin for LogSyncMessage<L>
impl<L> UnsafeUnpin for LogSyncMessage<L>
impl<L> UnwindSafe for LogSyncMessage<L>where
L: RefUnwindSafe,
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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
impl<T> Extensions for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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 more