pub struct GroupingOptions<'a> {
pub backend: Option<&'a dyn LlmBackend>,
pub cache_dir: Option<&'a Path>,
}Fields§
§backend: Option<&'a dyn LlmBackend>Injected backend; None lets the pipeline build one from
[grouping].command (default: the validated claude invocation).
cache_dir: Option<&'a Path>Cache directory (spec/persistence.md suggests
<git-common-dir>/differential/cache/grouping). None disables caching.
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for GroupingOptions<'a>
impl<'a> !UnwindSafe for GroupingOptions<'a>
impl<'a> Freeze for GroupingOptions<'a>
impl<'a> Send for GroupingOptions<'a>
impl<'a> Sync for GroupingOptions<'a>
impl<'a> Unpin for GroupingOptions<'a>
impl<'a> UnsafeUnpin for GroupingOptions<'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