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