pub struct CompositeName {
pub name: Option<String>,
pub net_list: Vec<String>,
pub composite: CompositeDefaultType,
}Expand description
Define a net composited from many other net
Fields§
§name: Option<String>§net_list: Vec<String>§composite: CompositeDefaultTypeTrait Implementations§
Source§impl Clone for CompositeName
impl Clone for CompositeName
Source§fn clone(&self) -> CompositeName
fn clone(&self) -> CompositeName
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CompositeName
impl Debug for CompositeName
Source§impl<'de> Deserialize<'de> for CompositeName
impl<'de> Deserialize<'de> for CompositeName
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CompositeName
impl RefUnwindSafe for CompositeName
impl Send for CompositeName
impl Sync for CompositeName
impl Unpin for CompositeName
impl UnwindSafe for CompositeName
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