pub struct ReviewArgs {
pub id: String,
pub model: Option<String>,
pub diff_only: bool,
}Expand description
Arguments for cmd_review.
Fields§
§id: StringBean ID to review.
model: Option<String>Override model (passed as BEAN_REVIEW_MODEL env var to the agent).
diff_only: boolInclude only the git diff, not the full bean description.
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