pub struct BinaryTagRow {
pub rowid: i64,
pub key: String,
pub byte_len: u64,
}Expand description
A binary tag row read back for synthesis: the streaming handle (rowid), the
key, and the payload length — the bytes themselves stream at read time.
Fields§
§rowid: i64§key: String§byte_len: u64Trait Implementations§
Source§impl Clone for BinaryTagRow
impl Clone for BinaryTagRow
Source§fn clone(&self) -> BinaryTagRow
fn clone(&self) -> BinaryTagRow
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 BinaryTagRow
impl Debug for BinaryTagRow
impl Eq for BinaryTagRow
Source§impl PartialEq for BinaryTagRow
impl PartialEq for BinaryTagRow
Source§fn eq(&self, other: &BinaryTagRow) -> bool
fn eq(&self, other: &BinaryTagRow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BinaryTagRow
Auto Trait Implementations§
impl Freeze for BinaryTagRow
impl RefUnwindSafe for BinaryTagRow
impl Send for BinaryTagRow
impl Sync for BinaryTagRow
impl Unpin for BinaryTagRow
impl UnsafeUnpin for BinaryTagRow
impl UnwindSafe for BinaryTagRow
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