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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more