Struct rust_hdl_core::check_error::PathedName
source · 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<PathedName> for PathedName
impl PartialEq<PathedName> for PathedName
source§fn eq(&self, other: &PathedName) -> bool
fn eq(&self, other: &PathedName) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.