pub type NameRef<T> = Ref<String, T>;Expand description
A strongly typed string referencing a T.
Aliased Type§
#[repr(transparent)]pub struct NameRef<T> {
pub val: String,
/* private fields */
}Fields§
§val: StringThe underlying storage or “raw” value.