pub struct OutputDDR {
pub d: Signal<In, Bits<2>>,
pub clock: Signal<In, Clock>,
pub q: Signal<Out, Bit>,
pub reset: Signal<In, Reset>,
/* private fields */
}
Fields
d: Signal<In, Bits<2>>
clock: Signal<In, Clock>
q: Signal<Out, Bit>
reset: Signal<In, Reset>
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
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.
sourcefn clone_into(&self, target: &mut T)
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