Skip to main content

IStringLike

Trait IStringLike 

Source
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§

Source

fn to_string_value(&self) -> Self::Output

Source

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".

Implementors§