struct PortSchedule {
busy: SimpleBitArray<{ _ }>,
}
Expand description
Busy tracking for one CPU execution port
Fields§
§busy: SimpleBitArray<{ _ }>
Bit array indicating when this port is busy, indexed by Cycle
Trait Implementations§
Source§impl Clone for PortSchedule
impl Clone for PortSchedule
Source§fn clone(&self) -> PortSchedule
fn clone(&self) -> PortSchedule
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 PortSchedule
impl Debug for PortSchedule
Source§impl Default for PortSchedule
impl Default for PortSchedule
Source§fn default() -> PortSchedule
fn default() -> PortSchedule
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PortSchedule
impl RefUnwindSafe for PortSchedule
impl Send for PortSchedule
impl Sync for PortSchedule
impl Unpin for PortSchedule
impl UnwindSafe for PortSchedule
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