pub trait GerberCode<W: Write> {
    fn serialize(&self, writer: &mut W) -> GerberResult<()>;
}
Expand description

All types that implement this trait can be converted to a complete Gerber Code line. Generated code should end with a newline.

Required Methods

Implementations on Foreign Types

Implement GerberCode for Vectors of types that are GerberCode.

Implementors