Type alias SchemaFields

SchemaFields: {
    fields: SchemaNamedField[];
    type: "Named";
} | {
    fields: SchemaType[];
    type: "Unnamed";
} | {
    type: "None";
}

Schema information of fields in either a struct or a variant of some enum (here it is an enum in Rust terms). The fields are either named, unnamed or none.

Generated using TypeDoc