pub enum PlacementStatus {
Fixed,
Movable,
Ignore,
}Expand description
Describe the placement status of a cell instance.
Variants§
Fixed
The instance location is fixed and must remain.
Movable
The instance can be put into another location by the placement engine.
Ignore
The instance should be ignored by the placement engine.
Trait Implementations§
source§impl Clone for PlacementStatus
impl Clone for PlacementStatus
source§fn clone(&self) -> PlacementStatus
fn clone(&self) -> PlacementStatus
Returns a copy 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 PlacementStatus
impl Debug for PlacementStatus
source§impl Hash for PlacementStatus
impl Hash for PlacementStatus
source§impl PartialEq<PlacementStatus> for PlacementStatus
impl PartialEq<PlacementStatus> for PlacementStatus
source§fn eq(&self, other: &PlacementStatus) -> bool
fn eq(&self, other: &PlacementStatus) -> bool
This method tests for
self and other values to be equal, and is used
by ==.