pub struct BusSpec {
pub name: String,
pub nodes: Vec<i32>,
}Expand description
A bus1=name.1.2.0 bus reference: name plus ordered node numbers.
Fields§
§name: String§nodes: Vec<i32>Node numbers as written; 0 is ground. Unparseable nodes become -1,
matching the reference parser’s error marker.
Trait Implementations§
impl StructuralPartialEq for BusSpec
Auto Trait Implementations§
impl Freeze for BusSpec
impl RefUnwindSafe for BusSpec
impl Send for BusSpec
impl Sync for BusSpec
impl Unpin for BusSpec
impl UnsafeUnpin for BusSpec
impl UnwindSafe for BusSpec
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