pub trait PartType {
type Ptr;
type PtrMut;
}Expand description
Type of a part, determines what can be done with a part.
Common part types are Field and AbstractPart.
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".