pub trait BidirectedData {
// Required method
fn mirror(&self) -> Self;
}Expand description
A type of data that can be mirrored. This is used to map nodes or edges to their mirrors.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.