pub struct PathedName {
pub path: String,
pub name: String,
}
Expand description
Struct to capture a signal in the design for human consumption
Fields§
§path: String
The path to the signal (i.e., the hierarchical namespace such as uut:flasher:blah
)
name: String
The name of the signal that is being referenced, such as pulse_in
.
Trait Implementations§
Source§impl Clone for PathedName
impl Clone for PathedName
Source§fn clone(&self) -> PathedName
fn clone(&self) -> PathedName
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PathedName
impl Debug for PathedName
Source§impl PartialEq for PathedName
impl PartialEq for PathedName
impl StructuralPartialEq for PathedName
Auto Trait Implementations§
impl Freeze for PathedName
impl RefUnwindSafe for PathedName
impl Send for PathedName
impl Sync for PathedName
impl Unpin for PathedName
impl UnwindSafe for PathedName
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