iri_string::format

Trait ToStringFallible

source
pub trait ToStringFallible: ToString {
    // Required method
    fn try_to_string(&self) -> Result<String, TryReserveError>;
}
Available on crate feature alloc only.
Expand description

ToString, but without panic.

Required Methods§

source

fn try_to_string(&self) -> Result<String, TryReserveError>

ToString::to_string, but without panic on OOM.

Implementors§