pub struct CycleState {
pub cycle: usize,
pub signals: HashMap<String, SignalValue>,
}Expand description
Signal assignments at a single clock cycle.
Fields§
§cycle: usize§signals: HashMap<String, SignalValue>Trait Implementations§
Source§impl Clone for CycleState
impl Clone for CycleState
Source§fn clone(&self) -> CycleState
fn clone(&self) -> CycleState
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 moreAuto Trait Implementations§
impl Freeze for CycleState
impl RefUnwindSafe for CycleState
impl Send for CycleState
impl Sync for CycleState
impl Unpin for CycleState
impl UnsafeUnpin for CycleState
impl UnwindSafe for CycleState
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