pub struct CodeGraphExportConfig {
pub mode: CodeGraphExportMode,
pub include_rendered: bool,
pub dedupe_edges: bool,
pub visible_levels: Option<usize>,
pub only_node_classes: Vec<String>,
pub exclude_node_classes: Vec<String>,
pub max_frontier_actions: usize,
}Fields§
§mode: CodeGraphExportMode§include_rendered: bool§dedupe_edges: bool§visible_levels: Option<usize>§only_node_classes: Vec<String>§exclude_node_classes: Vec<String>§max_frontier_actions: usizeImplementations§
Trait Implementations§
Source§impl Clone for CodeGraphExportConfig
impl Clone for CodeGraphExportConfig
Source§fn clone(&self) -> CodeGraphExportConfig
fn clone(&self) -> CodeGraphExportConfig
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 CodeGraphExportConfig
impl Debug for CodeGraphExportConfig
Source§impl Default for CodeGraphExportConfig
impl Default for CodeGraphExportConfig
Source§impl<'de> Deserialize<'de> for CodeGraphExportConfig
impl<'de> Deserialize<'de> for CodeGraphExportConfig
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 CodeGraphExportConfig
impl RefUnwindSafe for CodeGraphExportConfig
impl Send for CodeGraphExportConfig
impl Sync for CodeGraphExportConfig
impl Unpin for CodeGraphExportConfig
impl UnsafeUnpin for CodeGraphExportConfig
impl UnwindSafe for CodeGraphExportConfig
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