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