pub enum Package {
Soic,
Lqfp,
Bga,
Unknown,
}Expand description
What package is this chip in?
Variants§
Soic
It’s a SOIC package
Lqfp
It’s a LQFP package
Bga
It’s a BGA package
Unknown
I don’t know what package this is
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Package
impl RefUnwindSafe for Package
impl Send for Package
impl Sync for Package
impl Unpin for Package
impl UnwindSafe for Package
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