Trait TryToString

Source
pub trait TryToString {
    type Err;

    // Required method
    fn try_to_string(&self) -> Result<String, Self::Err>;
}

Required Associated Types§

Required Methods§

Source

fn try_to_string(&self) -> Result<String, Self::Err>

Implementors§