pub struct FcPipeline<T>where
T: SimObject,{ /* private fields */ }Expand description
The Flow-Controlled Pipeline.
Implementations§
Source§impl<T> FcPipeline<T>where
T: SimObject,
impl<T> FcPipeline<T>where
T: SimObject,
pub fn new_and_register_with_renames( engine: &Engine, clock: &Clock, parent: &Rc<Entity>, name: &str, aka: Option<&Aka>, config: &FcPipelineConfig, ) -> Result<Rc<Self>, SimError>
pub fn new_and_register( engine: &Engine, clock: &Clock, parent: &Rc<Entity>, name: &str, config: &FcPipelineConfig, ) -> Result<Rc<Self>, SimError>
pub fn set_data_delay(&self, delay: usize) -> SimResult
pub fn set_credit_delay(&self, delay: usize) -> SimResult
pub fn connect_port_tx(&self, port_state: PortStateResult<T>) -> SimResult
pub fn port_rx(&self) -> PortStateResult<T>
Trait Implementations§
Source§impl<T> Display for FcPipeline<T>where
T: SimObject,
impl<T> Display for FcPipeline<T>where
T: SimObject,
Source§impl<T> GetEntity for FcPipeline<T>where
T: SimObject,
impl<T> GetEntity for FcPipeline<T>where
T: SimObject,
Source§impl<T> Runnable for FcPipeline<T>where
T: SimObject,
impl<T> Runnable for FcPipeline<T>where
T: SimObject,
Auto Trait Implementations§
impl<T> !Freeze for FcPipeline<T>
impl<T> !RefUnwindSafe for FcPipeline<T>
impl<T> !Send for FcPipeline<T>
impl<T> !Sync for FcPipeline<T>
impl<T> !UnwindSafe for FcPipeline<T>
impl<T> Unpin for FcPipeline<T>
impl<T> UnsafeUnpin for FcPipeline<T>
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