Type Alias NameRef

Source
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: String

The underlying storage or “raw” value.