pub trait ValueBase {
// Required method
fn repository_id(&self) -> &str;
}Expand description
ValueBase trait. All IDL valuetypes extend this.
Required Methods§
Sourcefn repository_id(&self) -> &str
fn repository_id(&self) -> &str
Repository ID of the valuetype (e.g. IDL:omg.org/MyValue:1.0).
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".