pub struct BidiMaster<T>where
T: Synth,{
pub bus: BidiBusM<T>,
pub clock: Signal<In, Clock>,
pub data_to_bus: FIFOReadController<T>,
pub data_from_bus: FIFOWriteController<T>,
/* private fields */
}
Fields§
§bus: BidiBusM<T>
§clock: Signal<In, Clock>
§data_to_bus: FIFOReadController<T>
§data_from_bus: FIFOWriteController<T>
Trait Implementations§
Source§impl<T> Block for BidiMaster<T>where
T: Synth,
impl<T> Block for BidiMaster<T>where
T: Synth,
Source§fn connect_all(&mut self)
fn connect_all(&mut self)
Connects the internal signals of the circuit - used to initialize the circuit
Source§fn update_all(&mut self)
fn update_all(&mut self)
Propogate changes from inputs to outputs within the circuit
Source§fn has_changed(&self) -> bool
fn has_changed(&self) -> bool
Returns
true
if anything in the circuit has changed (outputs or internal state)Source§impl<T> Default for BidiMaster<T>
impl<T> Default for BidiMaster<T>
Source§fn default() -> BidiMaster<T>
fn default() -> BidiMaster<T>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<T> Freeze for BidiMaster<T>where
T: Freeze,
impl<T> RefUnwindSafe for BidiMaster<T>where
T: RefUnwindSafe,
impl<T> Send for BidiMaster<T>where
T: Send,
impl<T> Sync for BidiMaster<T>where
T: Sync,
impl<T> Unpin for BidiMaster<T>where
T: Unpin,
impl<T> UnwindSafe for BidiMaster<T>where
T: UnwindSafe,
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