pub struct DependencyBuilder;Expand description
Builder for dependency graphs.
Implementations§
Source§impl DependencyBuilder
impl DependencyBuilder
Sourcepub fn build(messages: &[Message]) -> DependencyGraph
pub fn build(messages: &[Message]) -> DependencyGraph
Build a dependency graph from message history.
Sourcepub fn build_with_custom_critical(
messages: &[Message],
critical_tools: &[&str],
) -> DependencyGraph
pub fn build_with_custom_critical( messages: &[Message], critical_tools: &[&str], ) -> DependencyGraph
Build dependency graph with custom critical tool detection.
Auto Trait Implementations§
impl Freeze for DependencyBuilder
impl RefUnwindSafe for DependencyBuilder
impl Send for DependencyBuilder
impl Sync for DependencyBuilder
impl Unpin for DependencyBuilder
impl UnsafeUnpin for DependencyBuilder
impl UnwindSafe for DependencyBuilder
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