pub struct ArchiveV3RefitPayloads {
pub manifest: Value,
pub members: BTreeMap<String, Vec<u8>>,
}Expand description
Exact bytes and manifest handed to the future Core Archive V3 writer.
This is intentionally a separate family from ArchiveV2ReplayPayloads:
V3 contains a new target-bound refit outcome and can never be fed to a V2
reader as a predictor package.
Fields§
§manifest: Value§members: BTreeMap<String, Vec<u8>>Trait Implementations§
Source§impl Clone for ArchiveV3RefitPayloads
impl Clone for ArchiveV3RefitPayloads
Source§fn clone(&self) -> ArchiveV3RefitPayloads
fn clone(&self) -> ArchiveV3RefitPayloads
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 ArchiveV3RefitPayloads
impl Debug for ArchiveV3RefitPayloads
Source§impl PartialEq for ArchiveV3RefitPayloads
impl PartialEq for ArchiveV3RefitPayloads
impl StructuralPartialEq for ArchiveV3RefitPayloads
Auto Trait Implementations§
impl Freeze for ArchiveV3RefitPayloads
impl RefUnwindSafe for ArchiveV3RefitPayloads
impl Send for ArchiveV3RefitPayloads
impl Sync for ArchiveV3RefitPayloads
impl Unpin for ArchiveV3RefitPayloads
impl UnsafeUnpin for ArchiveV3RefitPayloads
impl UnwindSafe for ArchiveV3RefitPayloads
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