pub trait SmartStringMode {
type InlineArray: AsRef<[u8]> + AsMut<[u8]> + Clone + Copy;
const DEALLOC: bool;
}
Expand description
Marker trait for SmartString
representations.
See LazyCompact
and Compact
.
Required Associated Constants§
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.