struct DotCrateGraph<'db> {
crates_to_render: FxHashMap<Crate, (&'db BuiltCrateData, &'db ExtraCrateData)>,
}Fields§
§crates_to_render: FxHashMap<Crate, (&'db BuiltCrateData, &'db ExtraCrateData)>Trait Implementations§
Source§impl<'a> GraphWalk<'a, Crate, (Crate, &'a Dependency<Crate>)> for DotCrateGraph<'_>
impl<'a> GraphWalk<'a, Crate, (Crate, &'a Dependency<Crate>)> for DotCrateGraph<'_>
Source§impl<'a> Labeller<'a, Crate, (Crate, &'a Dependency<Crate>)> for DotCrateGraph<'_>
impl<'a> Labeller<'a, Crate, (Crate, &'a Dependency<Crate>)> for DotCrateGraph<'_>
Source§fn node_id(&'a self, n: &Crate) -> Id<'a>
fn node_id(&'a self, n: &Crate) -> Id<'a>
Maps
n to a unique identifier with respect to self. The
implementer is responsible for ensuring that the returned name
is a valid DOT identifier.Source§fn node_label(&'a self, n: &Crate) -> LabelText<'a>
fn node_label(&'a self, n: &Crate) -> LabelText<'a>
Maps
n to a label that will be used in the rendered output.
The label need not be unique, and may be the empty string; the
default is just the output from node_id.Source§fn edge_label(&'a self, e: &E) -> LabelText<'a>
fn edge_label(&'a self, e: &E) -> LabelText<'a>
Maps
e to a label that will be used in the rendered output.
The label need not be unique, and may be the empty string; the
default is in fact the empty string.Source§fn node_style(&'a self, _n: &N) -> Style
fn node_style(&'a self, _n: &N) -> Style
Maps
n to a style that will be used in the rendered output.Source§fn edge_end_arrow(&'a self, _e: &E) -> Arrow
fn edge_end_arrow(&'a self, _e: &E) -> Arrow
Maps
e to arrow style that will be used on the end of an edge.
Defaults to default arrow style.Source§fn edge_start_arrow(&'a self, _e: &E) -> Arrow
fn edge_start_arrow(&'a self, _e: &E) -> Arrow
Maps
e to arrow style that will be used on the end of an edge.
Defaults to default arrow style.Source§fn edge_style(&'a self, _e: &E) -> Style
fn edge_style(&'a self, _e: &E) -> Style
Maps
e to a style that will be used in the rendered output.Auto Trait Implementations§
impl<'db> Freeze for DotCrateGraph<'db>
impl<'db> RefUnwindSafe for DotCrateGraph<'db>
impl<'db> Send for DotCrateGraph<'db>
impl<'db> Sync for DotCrateGraph<'db>
impl<'db> Unpin for DotCrateGraph<'db>
impl<'db> UnwindSafe for DotCrateGraph<'db>
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
§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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