pub trait ParseIntTarget:
Sized
+ Send
+ Sync
+ 'static {
// Required methods
fn parse_int(value: &str) -> Result<Self, String>;
fn target_name() -> &'static str;
}Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".