Enum kicad_parse_gen::KicadFile [] [src]

pub enum KicadFile {
    Unknown(PathBuf),
    Module(Module),
    Schematic(Schematic),
    Layout(Layout),
    SymbolLib(SymbolLib),
    Project(Project),
    FpLibTable(FpLibTable),
}

types of Kicad files that can be found

Variants

unknown file, probably no kicad file

a Kicad module, also know as a footprint

a Kicad schematic file

a Kicad layout file

a Kicad symbol library file

a Kicad project file

a Kicad fp-lib-table file

Trait Implementations

impl Debug for KicadFile
[src]

[src]

Formats the value using the given formatter.

impl Display for KicadFile
[src]

[src]

Formats the value using the given formatter. Read more