pub struct PcbArc {
pub start: Option<[f64; 2]>,
pub mid: Option<[f64; 2]>,
pub end: Option<[f64; 2]>,
pub width: Option<f64>,
pub layer: Option<String>,
pub net: Option<i32>,
pub uuid: Option<String>,
pub locked: bool,
}Expand description
PCB (.kicad_pcb) APIs.
Fields§
§start: Option<[f64; 2]>§mid: Option<[f64; 2]>§end: Option<[f64; 2]>§width: Option<f64>§layer: Option<String>§net: Option<i32>§uuid: Option<String>§locked: boolTrait Implementations§
impl StructuralPartialEq for PcbArc
Auto Trait Implementations§
impl Freeze for PcbArc
impl RefUnwindSafe for PcbArc
impl Send for PcbArc
impl Sync for PcbArc
impl Unpin for PcbArc
impl UnsafeUnpin for PcbArc
impl UnwindSafe for PcbArc
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more