pub struct NodeInfo {
pub name: String,
pub position: (i32, i32),
pub node_type: String,
pub delay: f64,
pub capacitance: f64,
}Expand description
Information about a single node in the clock tree.
Fields§
§name: StringNode name
position: (i32, i32)Node position as (x, y) coordinates
node_type: StringNode type: “sink” or “internal”
delay: f64Signal delay at this node
capacitance: f64Load capacitance at this node
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NodeInfo
impl RefUnwindSafe for NodeInfo
impl Send for NodeInfo
impl Sync for NodeInfo
impl Unpin for NodeInfo
impl UnsafeUnpin for NodeInfo
impl UnwindSafe for NodeInfo
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