pub trait StructureIdentifier:
Copy
+ Clone
+ Debug
+ TryFrom<isize>
+ Into<isize> {
// Required method
fn allowed_values(no_catchall: bool) -> Option<HashSet<isize>>;
}
Expand description
Trait for the structures represented by samples, identified by an integer.
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.