pub enum AttributeDeletionCriterion {
AllApertureAndObjectAttributes,
SingleObjectAttribute(String),
SingleApertureAttribute(String),
}Expand description
Gerber 2024.05 spec says:
“The TD command deletes ONE or ALL aperture or object attributes from the attributes dictionary.”
and:
“The
- Capitalization added for effect.
Variants§
Trait Implementations§
Source§impl Clone for AttributeDeletionCriterion
impl Clone for AttributeDeletionCriterion
Source§fn clone(&self) -> AttributeDeletionCriterion
fn clone(&self) -> AttributeDeletionCriterion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AttributeDeletionCriterion
impl Debug for AttributeDeletionCriterion
Source§impl PartialEq for AttributeDeletionCriterion
impl PartialEq for AttributeDeletionCriterion
Source§fn eq(&self, other: &AttributeDeletionCriterion) -> bool
fn eq(&self, other: &AttributeDeletionCriterion) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AttributeDeletionCriterion
Auto Trait Implementations§
impl Freeze for AttributeDeletionCriterion
impl RefUnwindSafe for AttributeDeletionCriterion
impl Send for AttributeDeletionCriterion
impl Sync for AttributeDeletionCriterion
impl Unpin for AttributeDeletionCriterion
impl UnsafeUnpin for AttributeDeletionCriterion
impl UnwindSafe for AttributeDeletionCriterion
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