pub trait L2NEdit:
L2NBase
+ LayoutEdit
+ NetlistEdit {
// Required methods
fn set_pin_of_shape(
&mut self,
shape_id: &Self::ShapeId,
pin: Option<Self::PinId>,
) -> Option<Self::PinId>;
fn set_net_of_shape(
&mut self,
shape_id: &Self::ShapeId,
net: Option<Self::NetId>,
) -> Option<Self::NetId>;
}Expand description
Fused layout and netlist view. This trait makes the link between netlist elements and layout elements.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.