StructAttribute

Type Alias StructAttribute 

Source
type StructAttribute = Conversion;
Expand description

Representation of a From derive macro struct container attribute.

#[from(forward)]
#[from(<types>)]

Aliased Type§

enum StructAttribute {
    Forward(Forward),
    Types(Types),
}

Variants§

§

Forward(Forward)

§

Types(Types)