pub struct ResolveReport {
pub context: Context,
pub strict: bool,
pub agent_home: PathBuf,
pub project_path: PathBuf,
pub is_linked_worktree: bool,
pub git_common_dir: Option<PathBuf>,
pub primary_worktree_path: Option<PathBuf>,
pub documents: Vec<ResolvedDocument>,
pub summary: ResolveSummary,
}Fields§
§context: Context§strict: bool§agent_home: PathBuf§project_path: PathBuf§is_linked_worktree: bool§git_common_dir: Option<PathBuf>§primary_worktree_path: Option<PathBuf>§documents: Vec<ResolvedDocument>§summary: ResolveSummaryImplementations§
Source§impl ResolveReport
impl ResolveReport
pub fn has_missing_required(&self) -> bool
Trait Implementations§
Source§impl Clone for ResolveReport
impl Clone for ResolveReport
Source§fn clone(&self) -> ResolveReport
fn clone(&self) -> ResolveReport
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ResolveReport
impl Debug for ResolveReport
Auto Trait Implementations§
impl Freeze for ResolveReport
impl RefUnwindSafe for ResolveReport
impl Send for ResolveReport
impl Sync for ResolveReport
impl Unpin for ResolveReport
impl UnsafeUnpin for ResolveReport
impl UnwindSafe for ResolveReport
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