pub struct GraphVizOptions {
pub title: Option<String>,
pub subtitle: Option<String>,
pub highlight_nodes: Vec<String>,
pub highlight_edges: Vec<String>,
pub filter_node_types: Option<Vec<NodeKind>>,
pub filter_edge_types: Option<Vec<EdgeKind>>,
pub cluster_by_file: bool,
pub show_spans: bool,
}
Expand description
GraphViz options for specific exports
Fields§
§title: Option<String>
§subtitle: Option<String>
§highlight_nodes: Vec<String>
§highlight_edges: Vec<String>
§filter_node_types: Option<Vec<NodeKind>>
§filter_edge_types: Option<Vec<EdgeKind>>
§cluster_by_file: bool
§show_spans: bool
Trait Implementations§
Source§impl Clone for GraphVizOptions
impl Clone for GraphVizOptions
Source§fn clone(&self) -> GraphVizOptions
fn clone(&self) -> GraphVizOptions
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 GraphVizOptions
impl Debug for GraphVizOptions
Source§impl Default for GraphVizOptions
impl Default for GraphVizOptions
Source§fn default() -> GraphVizOptions
fn default() -> GraphVizOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GraphVizOptions
impl RefUnwindSafe for GraphVizOptions
impl Send for GraphVizOptions
impl Sync for GraphVizOptions
impl Unpin for GraphVizOptions
impl UnwindSafe for GraphVizOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more