Trait alrulab_core::string::ToString

source ·
pub trait ToString<const N: usize> {
    // Required method
    fn to_string(&self) -> String<N>;

    // Provided method
    fn to_string_valued(&self) -> Value<String<N>> { ... }
}

Required Methods§

source

fn to_string(&self) -> String<N>

Provided Methods§

Implementors§

source§

impl<T: Display + ?Sized, const N: usize> ToString<N> for T

source§

impl<const N: usize> ToString<N> for String<N>