pub struct Settings {
pub config: ConfigFile,
pub plan: CheckPlan,
pub diff_text: String,
pub context: SensorReportContext,
}Expand description
Consolidated input for the diffguard sensor engine.
This is the R2 Library Contract entry point.
Fields§
§config: ConfigFileParsed configuration (rules, defaults).
plan: CheckPlanCheck execution plan (refs, scope, fail_on, etc.).
diff_text: StringRaw unified diff text.
context: SensorReportContextSensor envelope context (timing, capabilities).
Auto Trait Implementations§
impl Freeze for Settings
impl RefUnwindSafe for Settings
impl Send for Settings
impl Sync for Settings
impl Unpin for Settings
impl UnsafeUnpin for Settings
impl UnwindSafe for Settings
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