Expand description
A trait that converts the source to a FlexStr<T> without consuming it
use flexstr::{FlexStr, ToFlex};
let a: FlexStr = "This is a heap allocated string!!!!!".to_string().to_flex();
assert!(a.is_heap());A trait that converts the source to a FlexStr<T> without consuming it
use flexstr::{FlexStr, ToFlex};
let a: FlexStr = "This is a heap allocated string!!!!!".to_string().to_flex();
assert!(a.is_heap());