Enum kicad_parse_gen::schematic::Element [] [src]

pub enum Element {
    Component(Component),
    Wire(Wire),
    Connection(Connection),
    NoConnect(NoConnect),
    Text(Text),
    Other(String),
}

a schematic element is either a component or another unparsed element

Variants

a component element

Wire

Connection

a no-connect

a text element (label, hierachical label, global label, ...)

an unparsed other element

Trait Implementations

impl Debug for Element
[src]

Formats the value using the given formatter.

impl BoundingBox for Element
[src]

calculate the bounding box of a layout item

impl Display for Element
[src]

Formats the value using the given formatter. Read more