pub struct Context {
pub schema_version: u32,
pub generated_at: String,
pub agents: Vec<AgentId>,
pub scope: Scope,
pub repos: Vec<RepoContext>,
pub warnings: Vec<String>,
}Expand description
Top-level payload emitted by repograph context. schema_version is the
contract — additive-only at 1; breaking changes bump it.
Fields§
§schema_version: u32§generated_at: String§agents: Vec<AgentId>§scope: Scope§repos: Vec<RepoContext>§warnings: Vec<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Context
impl RefUnwindSafe for Context
impl Send for Context
impl Sync for Context
impl Unpin for Context
impl UnsafeUnpin for Context
impl UnwindSafe for Context
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