pub struct BoardPanel {
pub header: BoardPanelHeader,
pub outline: BoardPanelOutline,
pub other_outlines: Vec<OtherOutline>,
pub routing_outlines: Vec<RoutingOutline>,
pub placement_outlines: Vec<PlacementOutline>,
pub routing_keepouts: Vec<RoutingKeepout>,
pub via_keepouts: Vec<ViaKeepout>,
pub placement_keepouts: Vec<PlacementKeepout>,
pub placement_group_areas: Vec<PlacementGroupArea>,
pub drilled_holes: Vec<Hole>,
pub notes: Vec<Note>,
pub component_placements: Vec<ComponentPlacement>,
}Expand description
Represents a board or panel file in the IDF format.
Fields§
§header: BoardPanelHeader§outline: BoardPanelOutline§other_outlines: Vec<OtherOutline>§routing_outlines: Vec<RoutingOutline>§placement_outlines: Vec<PlacementOutline>§routing_keepouts: Vec<RoutingKeepout>§via_keepouts: Vec<ViaKeepout>§placement_keepouts: Vec<PlacementKeepout>§placement_group_areas: Vec<PlacementGroupArea>§drilled_holes: Vec<Hole>§notes: Vec<Note>§component_placements: Vec<ComponentPlacement>Trait Implementations§
Source§impl Clone for BoardPanel
impl Clone for BoardPanel
Source§fn clone(&self) -> BoardPanel
fn clone(&self) -> BoardPanel
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 BoardPanel
impl Debug for BoardPanel
Source§impl Default for BoardPanel
impl Default for BoardPanel
Source§fn default() -> BoardPanel
fn default() -> BoardPanel
Returns the “default value” for a type. Read more
Source§impl PartialEq for BoardPanel
impl PartialEq for BoardPanel
Source§impl PartialOrd for BoardPanel
impl PartialOrd for BoardPanel
impl StructuralPartialEq for BoardPanel
Auto Trait Implementations§
impl Freeze for BoardPanel
impl RefUnwindSafe for BoardPanel
impl Send for BoardPanel
impl Sync for BoardPanel
impl Unpin for BoardPanel
impl UnwindSafe for BoardPanel
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