pub struct EncodedSeriesRow(/* private fields */);Implementations§
Source§impl EncodedSeriesRow
impl EncodedSeriesRow
pub fn view(bytes: &EncodedBytes) -> &Self
pub fn bytes(&self) -> &EncodedBytes
pub fn as_slice(&self) -> &[u8] ⓘ
pub fn into_bytes(self) -> EncodedBytes
pub fn fingerprint(&self) -> RowShapeFingerprint
pub fn created_at(&self) -> DateTime
pub fn updated_at(&self) -> DateTime
pub fn time(&self) -> Option<DateTime>
pub fn is_defined(&self, index: usize) -> bool
pub fn body(&self) -> &[u8] ⓘ
Source§impl EncodedSeriesRow
impl EncodedSeriesRow
pub fn thaw(self) -> EncodedSeriesRowBuilder
Trait Implementations§
Source§impl Clone for EncodedSeriesRow
impl Clone for EncodedSeriesRow
Source§fn clone(&self) -> EncodedSeriesRow
fn clone(&self) -> EncodedSeriesRow
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 EncodedSeriesRow
impl Debug for EncodedSeriesRow
Source§impl From<EncodedBytes> for EncodedSeriesRow
impl From<EncodedBytes> for EncodedSeriesRow
Source§fn from(bytes: EncodedBytes) -> Self
fn from(bytes: EncodedBytes) -> Self
Converts to this type from the input type.
Source§impl From<EncodedSeriesRow> for EncodedBytes
impl From<EncodedSeriesRow> for EncodedBytes
Source§fn from(row: EncodedSeriesRow) -> Self
fn from(row: EncodedSeriesRow) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EncodedSeriesRow
impl PartialEq for EncodedSeriesRow
impl StructuralPartialEq for EncodedSeriesRow
Auto Trait Implementations§
impl Freeze for EncodedSeriesRow
impl RefUnwindSafe for EncodedSeriesRow
impl Send for EncodedSeriesRow
impl Sync for EncodedSeriesRow
impl Unpin for EncodedSeriesRow
impl UnsafeUnpin for EncodedSeriesRow
impl UnwindSafe for EncodedSeriesRow
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