pub trait ScenarioTarget<C = (), O = ()> {
// Required methods
fn graph(&self) -> &Graph<C, O>;
fn graph_mut(&mut self) -> &mut Graph<C, O>;
}Expand description
Application target that exposes the Trellis graph under test.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".