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§
Source§impl CodeGraphExportConfig
impl CodeGraphExportConfig
pub fn compact() -> CodeGraphExportConfig
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§fn default() -> CodeGraphExportConfig
fn default() -> CodeGraphExportConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodeGraphExportConfig
impl<'de> Deserialize<'de> for CodeGraphExportConfig
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CodeGraphExportConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CodeGraphExportConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for CodeGraphExportConfig
impl Serialize for CodeGraphExportConfig
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
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