pub struct IngestOptions {
pub no_ignore: bool,
pub include_exts: Vec<String>,
}Fields§
§no_ignore: boolWhen true, .lantern-ignore rules (and defaults) are not applied.
include_exts: Vec<String>Additional file extensions to treat as ingestible. Values are stored normalized (lowercase, no leading dot), so callers can feed in CLI input after light cleanup and the ingest path can do a cheap lookup.
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 moreSource§impl Debug for IngestOptions
impl Debug for IngestOptions
Source§impl Default for IngestOptions
impl Default for IngestOptions
Source§fn default() -> IngestOptions
fn default() -> IngestOptions
Returns the “default value” for a type. Read more
Auto 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