pub trait RexType {
// Required method
fn rex_type() -> Type;
// Provided method
fn collect_rex_family(_out: &mut Vec<AdtDecl>) -> Result<(), EngineError> { ... }
}Required Methods§
Provided Methods§
fn collect_rex_family(_out: &mut Vec<AdtDecl>) -> Result<(), EngineError>
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.