pub struct Sink {
pub name: String,
pub position: Point<i32, i32>,
pub capacitance: f64,
}Expand description
A clock sink with name, position, and capacitance.
Fields§
§name: StringThe name of this sink (e.g. “s1”, “FF_1”)
position: Point<i32, i32>The physical position of the sink in the layout
capacitance: f64The load capacitance of this sink
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Sink
impl RefUnwindSafe for Sink
impl Send for Sink
impl Sync for Sink
impl Unpin for Sink
impl UnsafeUnpin for Sink
impl UnwindSafe for Sink
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