pub trait HasOwnershipAttributes {
// Required method
fn ownership(&self) -> &OwnershipAttributes;
// Provided method
fn owns(&self) -> bool { ... }
}Expand description
Read-only access to the gml:OwnershipAttributeGroup on a property element.
Required Methods§
fn ownership(&self) -> &OwnershipAttributes
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".