pub struct Pin {
pub refdes: String,
pub name: String,
pub function: Option<String>,
}
Fields§
§refdes: String
§name: String
2024.05 spec calls this ‘number’ but a) it’s defined as a string, and b) pins like ‘EP’ (for exposed pad) are not numbers.
function: Option<String>
Trait Implementations§
impl Eq for Pin
impl StructuralPartialEq for Pin
Auto Trait Implementations§
impl Freeze for Pin
impl RefUnwindSafe for Pin
impl Send for Pin
impl Sync for Pin
impl Unpin for Pin
impl UnwindSafe for Pin
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