pub struct BidiSimulatedDevice<T: Synth> {
pub bus: BidiBusD<T>,
pub clock: Signal<In, Clock>,
pub data_to_bus: FIFOReadController<T>,
pub data_from_bus: FIFOWriteController<T>,
/* private fields */
}
Fields
bus: BidiBusD<T>
clock: Signal<In, Clock>
data_to_bus: FIFOReadController<T>
data_from_bus: FIFOWriteController<T>
Trait Implementations
sourceimpl<T: Synth> Block for BidiSimulatedDevice<T>
impl<T: Synth> Block for BidiSimulatedDevice<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)
sourceimpl<T: Default + Synth> Default for BidiSimulatedDevice<T>
impl<T: Default + Synth> Default for BidiSimulatedDevice<T>
sourcefn default() -> BidiSimulatedDevice<T>
fn default() -> BidiSimulatedDevice<T>
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl<T> RefUnwindSafe for BidiSimulatedDevice<T> where
T: RefUnwindSafe,
impl<T> Send for BidiSimulatedDevice<T> where
T: Send,
impl<T> Sync for BidiSimulatedDevice<T> where
T: Sync,
impl<T> Unpin for BidiSimulatedDevice<T> where
T: Unpin,
impl<T> UnwindSafe for BidiSimulatedDevice<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 · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more