pub struct BidiBusD<T: Synth> {
pub sig_inout: Signal<InOut, T>,
pub sig_empty: Signal<Out, Bit>,
pub sig_full: Signal<Out, Bit>,
pub sig_not_read: Signal<In, Bit>,
pub sig_not_write: Signal<In, Bit>,
pub sig_master: Signal<In, Bit>,
}
Fields
sig_inout: Signal<InOut, T>
sig_empty: Signal<Out, Bit>
sig_full: Signal<Out, Bit>
sig_not_read: Signal<In, Bit>
sig_not_write: Signal<In, Bit>
sig_master: Signal<In, Bit>
Implementations
Trait Implementations
sourceimpl<T: Synth> Block for BidiBusD<T>
impl<T: Synth> Block for BidiBusD<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 BidiBusD<T> where
T: RefUnwindSafe,
impl<T> Send for BidiBusD<T> where
T: Send,
impl<T> Sync for BidiBusD<T> where
T: Sync,
impl<T> Unpin for BidiBusD<T> where
T: Unpin,
impl<T> UnwindSafe for BidiBusD<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