pub struct RobotDeliveryOutput {
pub envelope: RobotEnvelope,
pub schema_version: &'static str,
pub open_issues: usize,
pub flow_distribution: Vec<FlowBucket>,
pub urgency_profile: Vec<UrgencyBucket>,
pub milestone_pressure: Vec<MilestoneSignal>,
pub window_days: i64,
}Expand description
Flattens crate::robot::RobotEnvelope at top level, mirroring every
other --robot-* output. Adds schema_version as an explicit payload
field for downstream pinning (see GH#12).
Fields§
§envelope: RobotEnvelope§schema_version: &'static str§open_issues: usize§flow_distribution: Vec<FlowBucket>§urgency_profile: Vec<UrgencyBucket>§milestone_pressure: Vec<MilestoneSignal>§window_days: i64Trait Implementations§
Source§impl Clone for RobotDeliveryOutput
impl Clone for RobotDeliveryOutput
Source§fn clone(&self) -> RobotDeliveryOutput
fn clone(&self) -> RobotDeliveryOutput
Returns a duplicate of the value. Read more
1.0.0 · 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 RobotDeliveryOutput
impl Debug for RobotDeliveryOutput
Auto Trait Implementations§
impl Freeze for RobotDeliveryOutput
impl RefUnwindSafe for RobotDeliveryOutput
impl Send for RobotDeliveryOutput
impl Sync for RobotDeliveryOutput
impl Unpin for RobotDeliveryOutput
impl UnsafeUnpin for RobotDeliveryOutput
impl UnwindSafe for RobotDeliveryOutput
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