Struct libreda_lefdef::def_ast::Row
source · pub struct Row {
pub site_name: String,
pub orig: (Coord, Coord),
pub site_orient: Orient,
pub step_pattern: RowStepPattern,
pub properties: BTreeMap<String, PropertyValue>,
}Expand description
Definition of a standard-cell row.
Fields§
§site_name: StringName of the site where this row is located.
orig: (Coord, Coord)Origin of the row.
site_orient: OrientOrientation of all sites in the row.
step_pattern: RowStepPatternSpecify the repetition pattern of the referenced site.
properties: BTreeMap<String, PropertyValue>Properties associated with the row.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Row
impl RefUnwindSafe for Row
impl Send for Row
impl Sync for Row
impl Unpin for Row
impl UnwindSafe for Row
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 more