pub struct Recorded {
pub managed: Vec<(String, Sha256)>,
pub integration: Vec<(String, Sha256)>,
}Expand description
What the target’s own record says this tool owns today.
It decides three things: which whole files may be refreshed, which marked regions may be re-spliced, and which files a release that stopped landing them may take back.
Fields§
§managed: Vec<(String, Sha256)>Each managed destination and the digest the record vouches for.
integration: Vec<(String, Sha256)>Each integration host and the hash of the region this tool owns.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Recorded
impl RefUnwindSafe for Recorded
impl Send for Recorded
impl Sync for Recorded
impl Unpin for Recorded
impl UnsafeUnpin for Recorded
impl UnwindSafe for Recorded
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