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