pub struct WireLoadSection<C: Ctx> {
pub name: String,
pub extra_ctx: C::Other,
pub attributes: Attributes,
pub wire_load_from_area: (f64, f64, String),
/* private fields */
}
Expand description
A wire_load_selection
group is defined in a library
group, as follows.
Fields§
§name: String
name
extra_ctx: C::Other
§attributes: Attributes
group undefined attributes
wire_load_from_area: (f64, f64, String)
Use this attribute to specify area per unit length of interconnect wire. Reference
Implementations§
Source§impl<C: Ctx> WireLoadSection<C>
impl<C: Ctx> WireLoadSection<C>
pub fn comments_this(&self) -> Option<&String>
pub fn comments_this_entry<'a>(&'a mut self) -> Entry<'a, u64, String>
pub fn comments_wire_load_from_area(&self) -> Option<&String>
pub fn comments_wire_load_from_area_entry<'a>( &'a mut self, ) -> Entry<'a, u64, String>
Trait Implementations§
Source§impl<C: Ctx> Borrow<String> for WireLoadSection<C>
impl<C: Ctx> Borrow<String> for WireLoadSection<C>
Source§fn borrow(&self) -> &WireLoadSectionId
fn borrow(&self) -> &WireLoadSectionId
Immutably borrows from an owned value. Read more
Source§impl<C: Clone + Ctx> Clone for WireLoadSection<C>
impl<C: Clone + Ctx> Clone for WireLoadSection<C>
Source§fn clone(&self) -> WireLoadSection<C>
fn clone(&self) -> WireLoadSection<C>
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<'de, C: Ctx> Deserialize<'de> for WireLoadSection<C>where
C::Other: Deserialize<'de>,
impl<'de, C: Ctx> Deserialize<'de> for WireLoadSection<C>where
C::Other: Deserialize<'de>,
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
Source§impl<C: Ctx> Item for WireLoadSection<C>
impl<C: Ctx> Item for WireLoadSection<C>
type Id = String
type IdReadonlyItem = IdReadonlyWireLoadSection<C>
Source§unsafe fn __unsafe_deref_mut(&self) -> &mut Self::IdReadonlyItem
unsafe fn __unsafe_deref_mut(&self) -> &mut Self::IdReadonlyItem
Safety Read more
fn id(&self) -> &Self::Id
fn id_readonly(&mut self) -> &mut Self::IdReadonlyItem
Auto Trait Implementations§
impl<C> Freeze for WireLoadSection<C>
impl<C> RefUnwindSafe for WireLoadSection<C>
impl<C> Send for WireLoadSection<C>
impl<C> Sync for WireLoadSection<C>
impl<C> Unpin for WireLoadSection<C>
impl<C> UnwindSafe for WireLoadSection<C>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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