pub struct PcbFootprintModel {
pub path: Option<String>,
pub at: Option<[f64; 3]>,
pub scale: Option<[f64; 3]>,
pub rotate: Option<[f64; 3]>,
pub hide: bool,
}Expand description
PCB (.kicad_pcb) APIs.
Fields§
§path: Option<String>§at: Option<[f64; 3]>§scale: Option<[f64; 3]>§rotate: Option<[f64; 3]>§hide: boolTrait Implementations§
Source§impl Clone for PcbFootprintModel
impl Clone for PcbFootprintModel
Source§fn clone(&self) -> PcbFootprintModel
fn clone(&self) -> PcbFootprintModel
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PcbFootprintModel
impl Debug for PcbFootprintModel
Source§impl PartialEq for PcbFootprintModel
impl PartialEq for PcbFootprintModel
impl StructuralPartialEq for PcbFootprintModel
Auto Trait Implementations§
impl Freeze for PcbFootprintModel
impl RefUnwindSafe for PcbFootprintModel
impl Send for PcbFootprintModel
impl Sync for PcbFootprintModel
impl Unpin for PcbFootprintModel
impl UnsafeUnpin for PcbFootprintModel
impl UnwindSafe for PcbFootprintModel
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