pub struct AuditReport {
pub repo_root: String,
pub maturity: Maturity,
pub core_complete: CoreStatus,
pub gaps: Vec<Gap>,
pub community_profile: CommunityProfile,
}Expand description
The readiness gap-report — a read-only score of the repo against the gated core, the tier-scaled canon, the contract’s producer obligations, and the GitHub community standards.
Fields§
§repo_root: StringThe canonicalized repository root that was scored.
maturity: MaturityThe maturity tier the scoring scaled to (the contract’s maturity).
core_complete: CoreStatusWhether the tier-scaled gated core is complete — the publish gate the orchestrator reads to decide bootstrap-vs-cut.
gaps: Vec<Gap>Every unmet obligation, in stable emit order (core first, then canon, then producer). Empty when the repo is fully ready at its tier.
community_profile: CommunityProfileGitHub’s community-standards view (supplementary evidence).
Trait Implementations§
Source§impl Clone for AuditReport
impl Clone for AuditReport
Source§fn clone(&self) -> AuditReport
fn clone(&self) -> AuditReport
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 moreSource§impl Debug for AuditReport
impl Debug for AuditReport
impl Eq for AuditReport
Source§impl PartialEq for AuditReport
impl PartialEq for AuditReport
Source§impl Serialize for AuditReport
impl Serialize for AuditReport
impl StructuralPartialEq for AuditReport
Auto Trait Implementations§
impl Freeze for AuditReport
impl RefUnwindSafe for AuditReport
impl Send for AuditReport
impl Sync for AuditReport
impl Unpin for AuditReport
impl UnsafeUnpin for AuditReport
impl UnwindSafe for AuditReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.