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§fn default() -> CodeGraphExtractorConfig
fn default() -> CodeGraphExtractorConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodeGraphExtractorConfig
impl<'de> Deserialize<'de> for CodeGraphExtractorConfig
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CodeGraphExtractorConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CodeGraphExtractorConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CodeGraphExtractorConfig
impl PartialEq for CodeGraphExtractorConfig
Source§impl Serialize for CodeGraphExtractorConfig
impl Serialize for CodeGraphExtractorConfig
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for CodeGraphExtractorConfig
impl StructuralPartialEq for CodeGraphExtractorConfig
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