pub trait UidDictionaryEntry {
// Required methods
fn uid(&self) -> &str;
fn name(&self) -> &str;
fn alias(&self) -> &str;
fn is_retired(&self) -> bool;
}
Expand description
UID dictionary entry type
Required Methods§
Sourcefn is_retired(&self) -> bool
fn is_retired(&self) -> bool
Get whether the UID is retired.