Struct analyzer::data_model::Struct

pub struct Struct {
    pub path: Vec<String>,
    pub docstring: String,
    pub fields: Vec<Field>,
}

Representation of a Struct

Requirement: Represent a struct RUST005 ../../../../_images/arrow-right-circle.svg
status: in-progress
tags: rust
links incoming: RUST002

Fields

path:

Vec<String>

The fully qualified name of the struct

docstring:

String

The docstring of the struct

fields:

Vec<Field>