pub trait ObjectTags {
// Required method
fn tags(&self) -> &Tags;
}Required Methods§
Returns the Tags of this Object.
For convenience, if the object has no tags, Tags::static_empty is returned instead.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".