pub struct ComponentConnectionBinding<Event, Signal, Expression> {
pub port: String,
pub input: Option<Expression>,
pub input_target: Option<TestbenchTarget<Signal, Expression>>,
pub output: Option<TestbenchTarget<Signal, Expression>>,
pub output_rtl_driven: bool,
pub event: Option<Event>,
}Fields§
§port: String§input: Option<Expression>§input_target: Option<TestbenchTarget<Signal, Expression>>Direct mask source for a variable/select input connection. Runtime
hosts evaluate input for the value and use this target to preserve
the corresponding four-state mask.
output: Option<TestbenchTarget<Signal, Expression>>§output_rtl_driven: bool§event: Option<Event>Trait Implementations§
Source§impl<Event: Clone, Signal: Clone, Expression: Clone> Clone for ComponentConnectionBinding<Event, Signal, Expression>
impl<Event: Clone, Signal: Clone, Expression: Clone> Clone for ComponentConnectionBinding<Event, Signal, Expression>
Source§fn clone(&self) -> ComponentConnectionBinding<Event, Signal, Expression>
fn clone(&self) -> ComponentConnectionBinding<Event, Signal, Expression>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<Event: Debug, Signal: Debug, Expression: Debug> Debug for ComponentConnectionBinding<Event, Signal, Expression>
impl<Event: Debug, Signal: Debug, Expression: Debug> Debug for ComponentConnectionBinding<Event, Signal, Expression>
Source§impl<'de, Event, Signal, Expression> Deserialize<'de> for ComponentConnectionBinding<Event, Signal, Expression>
impl<'de, Event, Signal, Expression> Deserialize<'de> for ComponentConnectionBinding<Event, Signal, Expression>
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
impl<Event: Eq, Signal: Eq, Expression: Eq> Eq for ComponentConnectionBinding<Event, Signal, Expression>
Source§impl<Event: PartialEq, Signal: PartialEq, Expression: PartialEq> PartialEq for ComponentConnectionBinding<Event, Signal, Expression>
impl<Event: PartialEq, Signal: PartialEq, Expression: PartialEq> PartialEq for ComponentConnectionBinding<Event, Signal, Expression>
Source§impl<Event, Signal, Expression> Serialize for ComponentConnectionBinding<Event, Signal, Expression>
impl<Event, Signal, Expression> Serialize for ComponentConnectionBinding<Event, Signal, Expression>
impl<Event: PartialEq, Signal: PartialEq, Expression: PartialEq> StructuralPartialEq for ComponentConnectionBinding<Event, Signal, Expression>
Auto Trait Implementations§
impl<Event, Signal, Expression> Freeze for ComponentConnectionBinding<Event, Signal, Expression>
impl<Event, Signal, Expression> RefUnwindSafe for ComponentConnectionBinding<Event, Signal, Expression>where
Option<Expression>: RefUnwindSafe,
Option<TestbenchTarget<Signal, Expression>>: RefUnwindSafe,
Option<Event>: RefUnwindSafe,
impl<Event, Signal, Expression> Send for ComponentConnectionBinding<Event, Signal, Expression>
impl<Event, Signal, Expression> Sync for ComponentConnectionBinding<Event, Signal, Expression>
impl<Event, Signal, Expression> Unpin for ComponentConnectionBinding<Event, Signal, Expression>
impl<Event, Signal, Expression> UnsafeUnpin for ComponentConnectionBinding<Event, Signal, Expression>where
Option<Expression>: UnsafeUnpin,
Option<TestbenchTarget<Signal, Expression>>: UnsafeUnpin,
Option<Event>: UnsafeUnpin,
impl<Event, Signal, Expression> UnwindSafe for ComponentConnectionBinding<Event, Signal, Expression>where
Option<Expression>: UnwindSafe,
Option<TestbenchTarget<Signal, Expression>>: UnwindSafe,
Option<Event>: UnwindSafe,
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