pub struct ReplicationFrame {
pub kind: FrameKind,
pub compressed: bool,
pub payload: Vec<u8>,
}Fields§
§kind: FrameKind§compressed: bool§payload: Vec<u8>Trait Implementations§
Source§impl Clone for ReplicationFrame
impl Clone for ReplicationFrame
Source§fn clone(&self) -> ReplicationFrame
fn clone(&self) -> ReplicationFrame
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 ReplicationFrame
impl Debug for ReplicationFrame
Source§impl PartialEq for ReplicationFrame
impl PartialEq for ReplicationFrame
Source§fn eq(&self, other: &ReplicationFrame) -> bool
fn eq(&self, other: &ReplicationFrame) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ReplicationFrame
impl StructuralPartialEq for ReplicationFrame
Auto Trait Implementations§
impl Freeze for ReplicationFrame
impl RefUnwindSafe for ReplicationFrame
impl Send for ReplicationFrame
impl Sync for ReplicationFrame
impl Unpin for ReplicationFrame
impl UnsafeUnpin for ReplicationFrame
impl UnwindSafe for ReplicationFrame
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