pub struct EncodedScalar {
pub name: EncodedName,
pub presence: EncodedPresence,
pub data: EncodedStream,
}Expand description
Wire-ready encoded scalar column (owns its byte buffers).
Fields§
§name: EncodedName§presence: EncodedPresence§data: EncodedStreamTrait Implementations§
Source§impl Clone for EncodedScalar
impl Clone for EncodedScalar
Source§fn clone(&self) -> EncodedScalar
fn clone(&self) -> EncodedScalar
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 Debug for EncodedScalar
impl Debug for EncodedScalar
Source§impl PartialEq for EncodedScalar
impl PartialEq for EncodedScalar
impl StructuralPartialEq for EncodedScalar
Auto Trait Implementations§
impl Freeze for EncodedScalar
impl RefUnwindSafe for EncodedScalar
impl Send for EncodedScalar
impl Sync for EncodedScalar
impl Unpin for EncodedScalar
impl UnsafeUnpin for EncodedScalar
impl UnwindSafe for EncodedScalar
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