pub struct ManifestPart {
pub part_id: u32,
pub path: String,
pub rows: i64,
pub size_bytes: u64,
pub content_fingerprint: String,
pub status: PartStatus,
}Expand description
One committed (or quarantined) output part.
path is relative to the destination prefix (ADR-0012 §Manifest
schema) so the manifest is portable across copies of the dataset.
Fields§
§part_id: u32§path: String§rows: i64§size_bytes: u64§content_fingerprint: Stringxxh3 fingerprint of the part body. Format mirrors crate::state::schema_fingerprint:
"xxh3:<16-hex>". Algorithm prefix MUST be checked before interpreting
the hex body (sha256/blake3 reserved for future hashers).
status: PartStatusTrait Implementations§
Source§impl Clone for ManifestPart
impl Clone for ManifestPart
Source§fn clone(&self) -> ManifestPart
fn clone(&self) -> ManifestPart
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 ManifestPart
impl Debug for ManifestPart
Source§impl<'de> Deserialize<'de> for ManifestPart
impl<'de> Deserialize<'de> for ManifestPart
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ManifestPart
impl PartialEq for ManifestPart
Source§fn eq(&self, other: &ManifestPart) -> bool
fn eq(&self, other: &ManifestPart) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ManifestPart
impl Serialize for ManifestPart
impl StructuralPartialEq for ManifestPart
Auto Trait Implementations§
impl Freeze for ManifestPart
impl RefUnwindSafe for ManifestPart
impl Send for ManifestPart
impl Sync for ManifestPart
impl Unpin for ManifestPart
impl UnsafeUnpin for ManifestPart
impl UnwindSafe for ManifestPart
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