[][src]Trait partial_ref::PartType

pub trait PartType {
    type Ptr;
    type PtrMut;
}

Type of a part, determines what can be done with a part.

Common part types are Field and AbstractPart.

Associated Types

type Ptr

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

type PtrMut

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

Loading content...

Implementors

impl PartType for AbstractPart[src]

type Ptr = ()

type PtrMut = ()

impl<FieldType: ?Sized> PartType for Field<FieldType>[src]

Loading content...