Struct static_link_module::PortMapping
source · pub struct PortMapping {
pub(crate) output: Vec<Constraint>,
pub(crate) input: Vec<Constraint>,
}
Expand description
A list of user-specified Constraints used to find each end of the port to be linked.
Fields§
§output: Vec<Constraint>
A description of the output ports to link.
The constraint port.direction=out
is implied.
input: Vec<Constraint>
A description of the input ports to link.
The constraint port.direction=in
is implied.
Trait Implementations§
source§impl Clone for PortMapping
impl Clone for PortMapping
source§fn clone(&self) -> PortMapping
fn clone(&self) -> PortMapping
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 PortMapping
impl Debug for PortMapping
source§impl<'de> Deserialize<'de> for PortMapping
impl<'de> Deserialize<'de> for PortMapping
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
Auto Trait Implementations§
impl Freeze for PortMapping
impl RefUnwindSafe for PortMapping
impl Send for PortMapping
impl Sync for PortMapping
impl Unpin for PortMapping
impl UnwindSafe for PortMapping
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