#[repr(i32)]pub enum PutValueDelay {
NoDelay = 1,
Inertial = 2,
Transport = 3,
PureTransport = 4,
}Expand description
Delay mode used with vpi_put_value.
Variants§
NoDelay = 1
Apply immediately.
Inertial = 2
Apply using inertial delay semantics.
Transport = 3
Apply using transport delay semantics.
PureTransport = 4
Apply using pure transport delay semantics.
Trait Implementations§
Source§impl Clone for PutValueDelay
impl Clone for PutValueDelay
Source§fn clone(&self) -> PutValueDelay
fn clone(&self) -> PutValueDelay
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 moreimpl Copy for PutValueDelay
Source§impl Debug for PutValueDelay
impl Debug for PutValueDelay
impl Eq for PutValueDelay
Source§impl PartialEq for PutValueDelay
impl PartialEq for PutValueDelay
impl StructuralPartialEq for PutValueDelay
Auto Trait Implementations§
impl Freeze for PutValueDelay
impl RefUnwindSafe for PutValueDelay
impl Send for PutValueDelay
impl Sync for PutValueDelay
impl Unpin for PutValueDelay
impl UnsafeUnpin for PutValueDelay
impl UnwindSafe for PutValueDelay
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