pub enum StandardComment {
FileAttribute(FileAttribute),
ObjectAttribute(ObjectAttribute),
ApertureAttribute(ApertureAttribute),
DeleteAttribute(AttributeDeletionCriterion),
}Expand description
See Gerber spec 2024.05.
- 4.1 - Comment (G04)
- 5.1.1 - Comment attributes
Variants§
FileAttribute(FileAttribute)
TF
ObjectAttribute(ObjectAttribute)
TO
ApertureAttribute(ApertureAttribute)
TA
DeleteAttribute(AttributeDeletionCriterion)
TD
Trait Implementations§
Source§impl Clone for StandardComment
impl Clone for StandardComment
Source§fn clone(&self) -> StandardComment
fn clone(&self) -> StandardComment
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 StandardComment
impl Debug for StandardComment
Source§impl PartialEq for StandardComment
impl PartialEq for StandardComment
Source§fn eq(&self, other: &StandardComment) -> bool
fn eq(&self, other: &StandardComment) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StandardComment
Auto Trait Implementations§
impl Freeze for StandardComment
impl RefUnwindSafe for StandardComment
impl Send for StandardComment
impl Sync for StandardComment
impl Unpin for StandardComment
impl UnsafeUnpin for StandardComment
impl UnwindSafe for StandardComment
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