pub struct Milestone {
pub id: String,
pub title: String,
pub features: Vec<Feature>,
pub status: MilestoneStatus,
pub fix_cycles: u32,
pub start_sha: Option<String>,
pub validator_guidance: Option<String>,
}Fields§
§id: String§title: String§features: Vec<Feature>§status: MilestoneStatus§fix_cycles: u32Loop-guard counter (plan §4.5). Incremented per validation round that produced findings; milestone blocks when it exceeds the configured cap.
start_sha: Option<String>Recorded at milestone.started so validators diff start..HEAD (§4.4).
validator_guidance: Option<String>Operator guidance folded from the latest milestone.unblocked event; injected verbatim into validator tasks until the milestone completes.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Milestone
impl<'de> Deserialize<'de> for Milestone
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Milestone
impl RefUnwindSafe for Milestone
impl Send for Milestone
impl Sync for Milestone
impl Unpin for Milestone
impl UnsafeUnpin for Milestone
impl UnwindSafe for Milestone
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