pub struct AnalysisArgsMeta {
pub preset: String,
pub format: String,
pub window_tokens: Option<usize>,
pub git: Option<bool>,
pub max_files: Option<usize>,
pub max_bytes: Option<u64>,
pub max_commits: Option<usize>,
pub max_commit_files: Option<usize>,
pub max_file_bytes: Option<u64>,
pub import_granularity: String,
}Fields§
§preset: String§format: String§window_tokens: Option<usize>§git: Option<bool>§max_files: Option<usize>§max_bytes: Option<u64>§max_commits: Option<usize>§max_commit_files: Option<usize>§max_file_bytes: Option<u64>§import_granularity: StringTrait Implementations§
Source§impl Clone for AnalysisArgsMeta
impl Clone for AnalysisArgsMeta
Source§fn clone(&self) -> AnalysisArgsMeta
fn clone(&self) -> AnalysisArgsMeta
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 AnalysisArgsMeta
impl Debug for AnalysisArgsMeta
Source§impl<'de> Deserialize<'de> for AnalysisArgsMeta
impl<'de> Deserialize<'de> for AnalysisArgsMeta
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AnalysisArgsMeta
impl RefUnwindSafe for AnalysisArgsMeta
impl Send for AnalysisArgsMeta
impl Sync for AnalysisArgsMeta
impl Unpin for AnalysisArgsMeta
impl UnwindSafe for AnalysisArgsMeta
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