pub struct OutputDDR {
pub d: Signal<In, Bits<2>>,
pub clock: Signal<In, Clock>,
pub q: Signal<Out, Bit>,
pub reset: Signal<In, Bit>,
/* private fields */
}
Fields
d: Signal<In, Bits<2>>
clock: Signal<In, Clock>
q: Signal<Out, Bit>
reset: Signal<In, Bit>
Trait Implementations
sourceimpl Block for OutputDDR
impl Block for OutputDDR
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 RefUnwindSafe for OutputDDR
impl Send for OutputDDR
impl Sync for OutputDDR
impl Unpin for OutputDDR
impl UnwindSafe for OutputDDR
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