pub trait IntegerDisplayable {
// Required method
fn integer_type() -> IntegerType;
// Provided method
fn with_display(display: IntegerDisplay) -> Link { ... }
}Required Methods§
fn integer_type() -> IntegerType
Provided Methods§
fn with_display(display: IntegerDisplay) -> Link
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.