pub trait GraphValidator {
// Required method
fn validate(&self) -> Result<(), GraphError>;
}Expand description
An interface for descriptor validation (borrowed/owned/buffer).
Required Methods§
Sourcefn validate(&self) -> Result<(), GraphError>
fn validate(&self) -> Result<(), GraphError>
Validates the wiring of the graph.