pub struct HookStatusSeed {
pub endpoint: String,
pub token: String,
pub mission_id: String,
pub run_id: String,
}Expand description
The runner-side seed carried on the session spec: what the backend
needs to install the lane. Backend-neutral (the runner mints it without
knowing which backend impl will consume it); backends without a
lifecycle-hook surface ignore it exactly like settings_json.
Fields§
§endpoint: StringThe full signal POST URL (from config hookStatus.endpoint).
token: StringThe freshly minted per-run capability token.
mission_id: String§run_id: StringTrait Implementations§
Source§impl Clone for HookStatusSeed
impl Clone for HookStatusSeed
Source§fn clone(&self) -> HookStatusSeed
fn clone(&self) -> HookStatusSeed
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 moreAuto Trait Implementations§
impl Freeze for HookStatusSeed
impl RefUnwindSafe for HookStatusSeed
impl Send for HookStatusSeed
impl Sync for HookStatusSeed
impl Unpin for HookStatusSeed
impl UnsafeUnpin for HookStatusSeed
impl UnwindSafe for HookStatusSeed
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