pub struct Rule {
pub name: String,
pub severity: String,
pub description: String,
}Expand description
A custom review rule defined in .argus.toml.
Rules are injected into the LLM system prompt so the reviewer checks for project-specific patterns.
§Examples
use argus_core::Rule;
let rule = Rule {
name: "no-unwrap".into(),
severity: "warning".into(),
description: "Do not use .unwrap() in production code".into(),
};
assert_eq!(rule.name, "no-unwrap");Fields§
§name: StringShort identifier for the rule (used in output).
severity: StringSeverity level: “bug”, “warning”, or “suggestion”.
description: StringNatural language instruction for the LLM.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Rule
impl<'de> Deserialize<'de> for Rule
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 Rule
impl RefUnwindSafe for Rule
impl Send for Rule
impl Sync for Rule
impl Unpin for Rule
impl UnsafeUnpin for Rule
impl UnwindSafe for Rule
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