pub struct IngestOptions {
pub repo: PathBuf,
pub project: String,
pub max_items: Option<u64>,
pub include: IngestInclude,
}Expand description
Options for one ingest pass.
Fields§
§repo: PathBufLocal path to the git repository to walk.
project: StringThe repo-anchor project entity — full UUID or an 8+ hex prefix.
max_items: Option<u64>Bounded work per call, counted across commits + issues + PRs
(ADR-088 Amendment 1). None means unbounded — the CLI’s historical
one-shot behavior.
include: IngestIncludeWhich record kinds to ingest this pass.
Implementations§
Trait Implementations§
Source§impl Clone for IngestOptions
impl Clone for IngestOptions
Source§fn clone(&self) -> IngestOptions
fn clone(&self) -> IngestOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for IngestOptions
impl RefUnwindSafe for IngestOptions
impl Send for IngestOptions
impl Sync for IngestOptions
impl Unpin for IngestOptions
impl UnsafeUnpin for IngestOptions
impl UnwindSafe for IngestOptions
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