pub struct CodeGraphExtractorConfig {
pub include_extensions: Vec<String>,
pub exclude_dirs: Vec<String>,
pub continue_on_parse_error: bool,
pub include_hidden: bool,
pub max_file_bytes: usize,
pub emit_export_edges: bool,
}Fields§
§include_extensions: Vec<String>§exclude_dirs: Vec<String>§continue_on_parse_error: bool§max_file_bytes: usize§emit_export_edges: boolTrait Implementations§
Source§impl Clone for CodeGraphExtractorConfig
impl Clone for CodeGraphExtractorConfig
Source§fn clone(&self) -> CodeGraphExtractorConfig
fn clone(&self) -> CodeGraphExtractorConfig
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 CodeGraphExtractorConfig
impl Debug for CodeGraphExtractorConfig
Source§impl Default for CodeGraphExtractorConfig
impl Default for CodeGraphExtractorConfig
Source§impl<'de> Deserialize<'de> for CodeGraphExtractorConfig
impl<'de> Deserialize<'de> for CodeGraphExtractorConfig
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 CodeGraphExtractorConfig
impl RefUnwindSafe for CodeGraphExtractorConfig
impl Send for CodeGraphExtractorConfig
impl Sync for CodeGraphExtractorConfig
impl Unpin for CodeGraphExtractorConfig
impl UnsafeUnpin for CodeGraphExtractorConfig
impl UnwindSafe for CodeGraphExtractorConfig
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