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 · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more