pub struct SPEFConnAttr {
pub coords: Option<(f32, f32)>,
pub cap_load: Option<ParValue>,
pub slew: Option<(ParValue, ParValue)>,
pub driving_cell: Option<CompactString>,
}Expand description
A piece of connectivity information in SPEF.
In the sense of *C ... *L ... *S ... *D ....
Fields§
§coords: Option<(f32, f32)>§cap_load: Option<ParValue>§slew: Option<(ParValue, ParValue)>§driving_cell: Option<CompactString>Trait Implementations§
Source§impl Debug for SPEFConnAttr
impl Debug for SPEFConnAttr
Auto Trait Implementations§
impl Freeze for SPEFConnAttr
impl RefUnwindSafe for SPEFConnAttr
impl Send for SPEFConnAttr
impl Sync for SPEFConnAttr
impl Unpin for SPEFConnAttr
impl UnwindSafe for SPEFConnAttr
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> 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 moreSource§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString. Read more