pub struct ComponentBlob {
pub version: u64,
pub dirty: bool,
pub bytes: Vec<u8>,
}Expand description
Opaque component blob stored in a station-local component column.
Fields§
§version: u64Monotonic version selected by the writer.
dirty: boolDirty flag used by replication planners.
bytes: Vec<u8>Opaque bytes.
Trait Implementations§
Source§impl Clone for ComponentBlob
impl Clone for ComponentBlob
Source§fn clone(&self) -> ComponentBlob
fn clone(&self) -> ComponentBlob
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 ComponentBlob
impl Debug for ComponentBlob
Source§impl Default for ComponentBlob
impl Default for ComponentBlob
Source§fn default() -> ComponentBlob
fn default() -> ComponentBlob
Returns the “default value” for a type. Read more
impl Eq for ComponentBlob
Source§impl PartialEq for ComponentBlob
impl PartialEq for ComponentBlob
impl StructuralPartialEq for ComponentBlob
Auto Trait Implementations§
impl Freeze for ComponentBlob
impl RefUnwindSafe for ComponentBlob
impl Send for ComponentBlob
impl Sync for ComponentBlob
impl Unpin for ComponentBlob
impl UnsafeUnpin for ComponentBlob
impl UnwindSafe for ComponentBlob
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