Trait partial_ref::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

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

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

Implementors