pub struct Symbol {
pub refdes: String,
pub comp_insertion_code: u64,
pub sym_name: String,
pub sym_mirror: bool,
pub sym_rotate: u16,
}Expand description
Represents a symbol in the decoded PCB file.
Fields§
§refdes: StringThe reference designator (e.g., “U1”) of the symbol.
comp_insertion_code: u64The component insertion code.
sym_name: StringThe name of the symbol.
sym_mirror: boolWhether the symbol is mirrored.
sym_rotate: u16The rotation angle of the symbol in degrees.
Trait Implementations§
impl Eq for Symbol
impl StructuralPartialEq for Symbol
Auto Trait Implementations§
impl Freeze for Symbol
impl RefUnwindSafe for Symbol
impl Send for Symbol
impl Sync for Symbol
impl Unpin for Symbol
impl UnsafeUnpin for Symbol
impl UnwindSafe for Symbol
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