pub struct SchematicOps;Implementations§
Source§impl SchematicOps
impl SchematicOps
pub fn new() -> Self
pub fn create_instance( &self, lib: &str, cell: &str, view: &str, name: &str, origin: (i64, i64), ) -> String
pub fn create_wire( &self, points: &[(i64, i64)], layer: &str, net_name: &str, ) -> String
pub fn create_wire_between_terms( &self, inst1: &str, term1: &str, inst2: &str, term2: &str, net_name: &str, ) -> String
pub fn create_wire_label(&self, net_name: &str, origin: (i64, i64)) -> String
pub fn create_pin( &self, net_name: &str, pin_type: &str, origin: (i64, i64), ) -> String
pub fn check(&self) -> String
pub fn open_cellview(&self, lib: &str, cell: &str, view: &str) -> String
pub fn save(&self) -> String
pub fn set_instance_param( &self, inst_name: &str, param: &str, value: &str, ) -> String
Trait Implementations§
Source§impl Default for SchematicOps
impl Default for SchematicOps
Source§fn default() -> SchematicOps
fn default() -> SchematicOps
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SchematicOps
impl RefUnwindSafe for SchematicOps
impl Send for SchematicOps
impl Sync for SchematicOps
impl Unpin for SchematicOps
impl UnsafeUnpin for SchematicOps
impl UnwindSafe for SchematicOps
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