pub struct HostStamp {
pub cell_id: String,
pub run_id: String,
pub host_received_at: SystemTime,
pub spec_signature_hash: String,
}Expand description
Attribution fields stamped supervisor-side on every guest declaration. Overrides whatever the guest sent — non-negotiable per ADR-0006 §6.
Fields§
§cell_id: StringPer-cell identifier.
run_id: StringPer-run identifier.
host_received_at: SystemTimeWallclock at host receive.
spec_signature_hash: StringSHA-256 of the spec the cell was admitted under.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HostStamp
impl RefUnwindSafe for HostStamp
impl Send for HostStamp
impl Sync for HostStamp
impl Unpin for HostStamp
impl UnsafeUnpin for HostStamp
impl UnwindSafe for HostStamp
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