pub struct ConflictResolutionRuntimeParams<'a> {
pub resolution_prompt: &'a str,
pub config: &'a Config,
pub logger: &'a Logger,
pub colors: Colors,
pub executor_arc: Arc<dyn ProcessExecutor>,
pub workspace: &'a dyn Workspace,
pub workspace_arc: Arc<dyn Workspace>,
pub reviewer_agent: &'a str,
pub registry: &'a AgentRegistry,
}Fields§
§resolution_prompt: &'a str§config: &'a Config§logger: &'a Logger§colors: Colors§executor_arc: Arc<dyn ProcessExecutor>§workspace: &'a dyn Workspace§workspace_arc: Arc<dyn Workspace>§reviewer_agent: &'a str§registry: &'a AgentRegistryAuto Trait Implementations§
impl<'a> Freeze for ConflictResolutionRuntimeParams<'a>
impl<'a> !RefUnwindSafe for ConflictResolutionRuntimeParams<'a>
impl<'a> Send for ConflictResolutionRuntimeParams<'a>
impl<'a> Sync for ConflictResolutionRuntimeParams<'a>
impl<'a> Unpin for ConflictResolutionRuntimeParams<'a>
impl<'a> UnsafeUnpin for ConflictResolutionRuntimeParams<'a>
impl<'a> !UnwindSafe for ConflictResolutionRuntimeParams<'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