We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Sometimes we want to add attribute to generated struct's field. For example:
#[derive(StructOfArray)] #[soa_derive(Serialize, Deserialize)] struct Point { x: f32, y: f32, // Skip serialization for PointVec::meta #[soa_attr(Vec, serde(skip))] meta: bool, }