pub struct PrHandoffInputs<'a> {
pub mission: &'a Mission,
pub report_md: Option<&'a str>,
pub plan_md: Option<&'a str>,
pub remote: &'a str,
pub probe_remote: bool,
}Expand description
Inputs gathered from mission artifacts (report/plan optional).
Fields§
§mission: &'a Mission§report_md: Option<&'a str>§plan_md: Option<&'a str>§remote: &'a str§probe_remote: boolWhen false, skip git ls-remote (no network). Used by Slack notify
so a hung remote cannot stall the bridge; the dashboard still probes.
Trait Implementations§
Source§impl<'a> Clone for PrHandoffInputs<'a>
impl<'a> Clone for PrHandoffInputs<'a>
Source§fn clone(&self) -> PrHandoffInputs<'a>
fn clone(&self) -> PrHandoffInputs<'a>
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<'a> Freeze for PrHandoffInputs<'a>
impl<'a> RefUnwindSafe for PrHandoffInputs<'a>
impl<'a> Send for PrHandoffInputs<'a>
impl<'a> Sync for PrHandoffInputs<'a>
impl<'a> Unpin for PrHandoffInputs<'a>
impl<'a> UnsafeUnpin for PrHandoffInputs<'a>
impl<'a> UnwindSafe for PrHandoffInputs<'a>
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