struct MicroOpPlan {
cycle: Cycle,
port: ExecPortIndex,
}
Expand description
Detailed execution schedule for one micro-operation
Includes the Cycle
it begins on, and the actual
execution port it was assigned.
Fields§
§cycle: Cycle
The Cycle this operation begins on
port: ExecPortIndex
Index of the execution port it runs on
Trait Implementations§
Source§impl Clone for MicroOpPlan
impl Clone for MicroOpPlan
Source§fn clone(&self) -> MicroOpPlan
fn clone(&self) -> MicroOpPlan
Returns a duplicate 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 MicroOpPlan
impl Debug for MicroOpPlan
Source§impl PartialEq for MicroOpPlan
impl PartialEq for MicroOpPlan
impl Copy for MicroOpPlan
impl Eq for MicroOpPlan
impl StructuralPartialEq for MicroOpPlan
Auto Trait Implementations§
impl Freeze for MicroOpPlan
impl RefUnwindSafe for MicroOpPlan
impl Send for MicroOpPlan
impl Sync for MicroOpPlan
impl Unpin for MicroOpPlan
impl UnwindSafe for MicroOpPlan
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