pub struct Pulser {
pub clock: Signal<In, Clock>,
pub enable: Signal<In, Bit>,
pub pulse: Signal<Out, Bit>,
/* private fields */
}
Fields
clock: Signal<In, Clock>
enable: Signal<In, Bit>
pulse: Signal<Out, Bit>
Implementations
Trait Implementations
sourceimpl Block for Pulser
impl Block for Pulser
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 Pulser
impl Send for Pulser
impl Sync for Pulser
impl Unpin for Pulser
impl UnwindSafe for Pulser
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