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§
sourcefn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.