pub trait TryIntoHeaplessString {
// Required method
fn try_into_heapless(self) -> Result<HString, ExprError>;
}Required Methods§
fn try_into_heapless(self) -> Result<HString, ExprError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".