pub trait ToDot {
// Required methods
fn egraph_to_dot(&self, path: impl AsRef<Path>);
fn wag_to_dot(&self, path: impl AsRef<Path>);
fn wag_to_petgraph(&self) -> SerializedPetGraph;
fn table_view(&self);
}Required Methods§
fn egraph_to_dot(&self, path: impl AsRef<Path>)
fn wag_to_dot(&self, path: impl AsRef<Path>)
fn wag_to_petgraph(&self) -> SerializedPetGraph
fn table_view(&self)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".