pub struct SchematicEditor<'a> { /* private fields */ }Implementations§
Source§impl<'a> SchematicEditor<'a>
impl<'a> SchematicEditor<'a>
pub fn new(client: &'a VirtuosoClient) -> Self
pub fn add_instance( &mut self, lib: &str, cell: &str, view: &str, name: &str, origin: (i64, i64), )
pub fn add_wire(&mut self, points: Vec<(i64, i64)>, layer: &str, net_name: &str)
pub fn add_label(&mut self, net_name: &str, origin: (i64, i64))
pub fn add_pin(&mut self, net_name: &str, pin_type: &str, origin: (i64, i64))
pub fn set_param(&mut self, inst_name: &str, param: &str, value: &str)
pub fn assign_net(&mut self, inst_name: &str, term_name: &str, net_name: &str)
pub fn execute(self) -> Result<VirtuosoResult>
Auto Trait Implementations§
impl<'a> Freeze for SchematicEditor<'a>
impl<'a> RefUnwindSafe for SchematicEditor<'a>
impl<'a> Send for SchematicEditor<'a>
impl<'a> Sync for SchematicEditor<'a>
impl<'a> Unpin for SchematicEditor<'a>
impl<'a> UnsafeUnpin for SchematicEditor<'a>
impl<'a> UnwindSafe for SchematicEditor<'a>
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