Trait MemConstruct

Source
pub unsafe trait MemConstruct {
    type Constructor: MemConstructConstructor<Target = Self>;
    type ConstructorFinishedToken;
}

Required Associated Types§

Implementations on Foreign Types§

Source§

impl MemConstruct for i32

Source§

type Constructor = PrimitiveI32Constructor<PrimitiveI32Tok>

Source§

type ConstructorFinishedToken = PrimitiveI32Constructor<()>

Source§

impl<T, const N: usize> MemConstruct for [T; N]
where T: MemConstruct,

Source§

type Constructor = ArrayMemConstructor<ArrayTok, T, N>

Source§

type ConstructorFinishedToken = ArrayMemConstructor<(), T, N>

Implementors§