pub struct Hole {
pub diameter: f32,
pub x: f32,
pub y: f32,
pub plating_style: String,
pub associated_part: String,
pub hole_type: String,
pub owner: String,
}Expand description
Represents a drilled hole in the IDF format. http://www.aertia.com/docs/priware/IDF_V30_Spec.pdf#page=25
Fields§
§diameter: f32§x: f32§y: f32§plating_style: String§associated_part: String§hole_type: String§owner: StringTrait Implementations§
Source§impl PartialOrd for Hole
impl PartialOrd for Hole
impl StructuralPartialEq for Hole
Auto Trait Implementations§
impl Freeze for Hole
impl RefUnwindSafe for Hole
impl Send for Hole
impl Sync for Hole
impl Unpin for Hole
impl UnwindSafe for Hole
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