pub struct FIFOLink<T: Synth> {
pub read: FIFOReadController<T>,
pub write: FIFOWriteController<T>,
/* private fields */
}
Fields
read: FIFOReadController<T>
write: FIFOWriteController<T>
Trait Implementations
sourceimpl<T: Synth> Block for FIFOLink<T>
impl<T: Synth> Block for FIFOLink<T>
fn connect_all(&mut self)
fn update_all(&mut self)
fn has_changed(&self) -> bool
fn accept(&self, name: &str, probe: &mut dyn Probe)
Auto Trait Implementations
impl<T> RefUnwindSafe for FIFOLink<T> where
T: RefUnwindSafe,
impl<T> Send for FIFOLink<T> where
T: Send,
impl<T> Sync for FIFOLink<T> where
T: Sync,
impl<T> Unpin for FIFOLink<T> where
T: Unpin,
impl<T> UnwindSafe for FIFOLink<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more