pub struct CXMappingPass {
pub architecture: Architecture,
pub placement: Placement,
pub routing_config: RoutingConfig,
pub directed: bool,
pub delay_measures: bool,
}Expand description
CX-focused mapping configuration.
Fields§
§architecture: ArchitectureTarget architecture.
placement: PlacementPlacement configuration.
routing_config: RoutingConfigRouting configuration.
directed: boolWhether the architecture is directed.
delay_measures: boolWhether to delay measurements.
Trait Implementations§
Source§impl Clone for CXMappingPass
impl Clone for CXMappingPass
Source§fn clone(&self) -> CXMappingPass
fn clone(&self) -> CXMappingPass
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 Debug for CXMappingPass
impl Debug for CXMappingPass
Source§impl<'de> Deserialize<'de> for CXMappingPass
impl<'de> Deserialize<'de> for CXMappingPass
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 PartialEq for CXMappingPass
impl PartialEq for CXMappingPass
Source§impl Serialize for CXMappingPass
impl Serialize for CXMappingPass
impl StructuralPartialEq for CXMappingPass
Auto Trait Implementations§
impl Freeze for CXMappingPass
impl RefUnwindSafe for CXMappingPass
impl Send for CXMappingPass
impl Sync for CXMappingPass
impl Unpin for CXMappingPass
impl UnwindSafe for CXMappingPass
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