pub type ReplicationProjection<S, C> = Result<ReplicationReceive<S, C>, (Conn<S, CopyBoth, C>, Error)>;Expand description
Replication projection preserving the connection when decoding fails.
Aliased Type§
pub enum ReplicationProjection<S, C> {
Ok(ReplicationReceive<S, C>),
Err((Conn<S, CopyBoth, C>, Error)),
}