pub struct DesignRuleSummary {
pub name: Option<String>,
pub constraint_count: usize,
pub condition: Option<String>,
pub layer: Option<String>,
}Expand description
Design-rules (.kicad_dru) APIs.
Fields§
§name: Option<String>§constraint_count: usize§condition: Option<String>§layer: Option<String>Trait Implementations§
Source§impl Clone for DesignRuleSummary
impl Clone for DesignRuleSummary
Source§fn clone(&self) -> DesignRuleSummary
fn clone(&self) -> DesignRuleSummary
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 DesignRuleSummary
impl Debug for DesignRuleSummary
Source§impl PartialEq for DesignRuleSummary
impl PartialEq for DesignRuleSummary
impl Eq for DesignRuleSummary
impl StructuralPartialEq for DesignRuleSummary
Auto Trait Implementations§
impl Freeze for DesignRuleSummary
impl RefUnwindSafe for DesignRuleSummary
impl Send for DesignRuleSummary
impl Sync for DesignRuleSummary
impl Unpin for DesignRuleSummary
impl UnsafeUnpin for DesignRuleSummary
impl UnwindSafe for DesignRuleSummary
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