pub struct RepoCommandBoundaryParams<'a> {
pub args: &'a Args,
pub config: &'a Config,
pub registry: &'a AgentRegistry,
pub developer_agent: &'a str,
pub reviewer_agent: &'a str,
pub logger: &'a Logger,
pub colors: Colors,
pub executor: &'a Arc<dyn ProcessExecutor>,
pub app_handler: &'a mut dyn AppEffectHandler,
pub repo_root: &'a Path,
pub workspace: &'a Arc<dyn Workspace>,
}Fields§
§args: &'a Args§config: &'a Config§registry: &'a AgentRegistry§developer_agent: &'a str§reviewer_agent: &'a str§logger: &'a Logger§colors: Colors§executor: &'a Arc<dyn ProcessExecutor>§app_handler: &'a mut dyn AppEffectHandler§repo_root: &'a Path§workspace: &'a Arc<dyn Workspace>Auto Trait Implementations§
impl<'a> Freeze for RepoCommandBoundaryParams<'a>
impl<'a> !RefUnwindSafe for RepoCommandBoundaryParams<'a>
impl<'a> !Send for RepoCommandBoundaryParams<'a>
impl<'a> !Sync for RepoCommandBoundaryParams<'a>
impl<'a> Unpin for RepoCommandBoundaryParams<'a>
impl<'a> UnsafeUnpin for RepoCommandBoundaryParams<'a>
impl<'a> !UnwindSafe for RepoCommandBoundaryParams<'a>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more