Trait PartType

Source
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§

Source

type Ptr

Type that can be produced from a constant pointer to a reference target.

Source

type PtrMut

Type that can be produced from a mutable pointer to a reference target.

Implementors§