pub trait Inquire<DefaultValue = ()>where
Self: Sized,{
// Required method
fn inquire(default: &DefaultValue) -> Option<Self>;
}Required Methods§
fn inquire(default: &DefaultValue) -> Option<Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".