pub enum PlacementBlockageType {
Soft,
Partial(f64),
}Expand description
Specify the type of a soft blockage.
Variants§
Soft
Initial placement shall not use the blocked area, but later stages can use it.
Partial(f64)
Give a maximal usage density for the initial placement in this area.
The density is given in percent and must have a value in the range [0.0, ..., 100.0].
Trait Implementations§
source§impl Clone for PlacementBlockageType
impl Clone for PlacementBlockageType
source§fn clone(&self) -> PlacementBlockageType
fn clone(&self) -> PlacementBlockageType
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 more