pub struct Signal {
pub pad: String,
pub group: Option<String>,
pub index: Option<u8>,
}
Expand description
A signal that is exposed on the outside of the package.
Fields§
§pad: String
The external pin name that exposes the signal.
group: Option<String>
§index: Option<u8>
Trait Implementations§
Source§impl PartialOrd for Signal
impl PartialOrd for Signal
impl Eq for Signal
impl StructuralPartialEq for Signal
Auto Trait Implementations§
impl Freeze for Signal
impl RefUnwindSafe for Signal
impl Send for Signal
impl Sync for Signal
impl Unpin for Signal
impl UnwindSafe for Signal
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