pub type StringValue = ArcStr;
String type for SQL values using ArcStr with small string optimization (SSO). Strings ≤22 bytes are stored inline without heap allocation.
pub struct StringValue(/* private fields */);