pub struct Input<E>where
E: FromVpiHandle,{ /* private fields */ }Expand description
Mark a value as input. Changes on this argument will have no effect on
the task. This is equivalent as using the argument E
Trait Implementations§
Source§impl<E> Deref for Input<E>where
E: FromVpiHandle,
impl<E> Deref for Input<E>where
E: FromVpiHandle,
Source§impl<E> DerefMut for Input<E>where
E: FromVpiHandle,
impl<E> DerefMut for Input<E>where
E: FromVpiHandle,
Source§impl<E> FromVpiHandle for Input<E>where
E: FromVpiHandle,
impl<E> FromVpiHandle for Input<E>where
E: FromVpiHandle,
Source§unsafe fn from_vpi_handle(handle: vpiHandle) -> Result<Self>
unsafe fn from_vpi_handle(handle: vpiHandle) -> Result<Self>
Conversion function from verilog to rust. In implementation, use the function
[crate::vpi_user::vpi_get_value] to obtain the value to convert.
Auto Trait Implementations§
impl<E> Freeze for Input<E>where
E: Freeze,
impl<E> RefUnwindSafe for Input<E>where
E: RefUnwindSafe,
impl<E> Send for Input<E>where
E: Send,
impl<E> Sync for Input<E>where
E: Sync,
impl<E> Unpin for Input<E>where
E: Unpin,
impl<E> UnwindSafe for Input<E>where
E: 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