pub struct ReviewArgs {Show 19 fields
pub command: Option<ReviewCommand>,
pub target: Option<String>,
pub staged: bool,
pub scope: ReviewScope,
pub base: Option<String>,
pub watched_agent: Option<Agent>,
pub reviewer_harness: Option<ReviewerHarness>,
pub watched_model: Option<String>,
pub reviewer_model: Option<String>,
pub reviewer_effort: Option<Effort>,
pub allow_same_model: bool,
pub strict_two_pass: bool,
pub arbiter_harness: Option<ReviewerHarness>,
pub arbiter_model: Option<String>,
pub arbiter_effort: Option<Effort>,
pub strict_goal: bool,
pub stop_after_lies: Option<u32>,
pub stop_after_fuckups: Option<u32>,
pub max_passes: Option<u32>,
}Fields§
§command: Option<ReviewCommand>§target: Option<String>§staged: bool§scope: ReviewScope§base: Option<String>§watched_agent: Option<Agent>§reviewer_harness: Option<ReviewerHarness>§watched_model: Option<String>§reviewer_model: Option<String>§reviewer_effort: Option<Effort>§allow_same_model: bool§strict_two_pass: bool§arbiter_harness: Option<ReviewerHarness>§arbiter_model: Option<String>§arbiter_effort: Option<Effort>§strict_goal: boolSic the adversarial reviewer in a loop until N lies or N fuckups.
stop_after_lies: Option<u32>§stop_after_fuckups: Option<u32>§max_passes: Option<u32>Trait Implementations§
Source§impl Args for ReviewArgs
impl Args for ReviewArgs
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl Debug for ReviewArgs
impl Debug for ReviewArgs
Source§impl FromArgMatches for ReviewArgs
impl FromArgMatches for ReviewArgs
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Auto Trait Implementations§
impl Freeze for ReviewArgs
impl RefUnwindSafe for ReviewArgs
impl Send for ReviewArgs
impl Sync for ReviewArgs
impl Unpin for ReviewArgs
impl UnsafeUnpin for ReviewArgs
impl UnwindSafe for ReviewArgs
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