Enum kicad_parse_gen::KicadFile [] [src]

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

types of Kicad files that can be found

Variants

Unknown(String)

unknown file, probably no kicad file

Module(Module)

a Kicad module, also know as a footprint

Schematic(Schematic)

a Kicad schematic file

Layout(Layout)

a Kicad layout file

SymbolLib(SymbolLib)

a Kicad symbol library file

Project(Project)

a Kicad project file

Trait Implementations

impl Debug for KicadFile
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for KicadFile
[src]

fn fmt(&self, f: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.