pub trait IStringLike {
type Output;
// Required methods
fn to_string_value(&self) -> Self::Output;
fn from_string(&self, value: &str) -> Self::Output;
}Required Associated Types§
Required Methods§
fn to_string_value(&self) -> Self::Output
fn from_string(&self, value: &str) -> Self::Output
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".