pub struct EncodedTableRow(/* private fields */);Implementations§
Source§impl EncodedTableRow
impl EncodedTableRow
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 EncodedTableRow
impl EncodedTableRow
pub fn thaw(self) -> EncodedTableRowBuilder
Trait Implementations§
Source§impl Clone for EncodedTableRow
impl Clone for EncodedTableRow
Source§fn clone(&self) -> EncodedTableRow
fn clone(&self) -> EncodedTableRow
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 EncodedTableRow
impl Debug for EncodedTableRow
Source§impl From<EncodedBytes> for EncodedTableRow
impl From<EncodedBytes> for EncodedTableRow
Source§fn from(bytes: EncodedBytes) -> Self
fn from(bytes: EncodedBytes) -> Self
Converts to this type from the input type.
Source§impl From<EncodedTableRow> for EncodedBytes
impl From<EncodedTableRow> for EncodedBytes
Source§fn from(row: EncodedTableRow) -> Self
fn from(row: EncodedTableRow) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EncodedTableRow
impl PartialEq for EncodedTableRow
impl StructuralPartialEq for EncodedTableRow
Auto Trait Implementations§
impl Freeze for EncodedTableRow
impl RefUnwindSafe for EncodedTableRow
impl Send for EncodedTableRow
impl Sync for EncodedTableRow
impl Unpin for EncodedTableRow
impl UnsafeUnpin for EncodedTableRow
impl UnwindSafe for EncodedTableRow
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