pub struct MOSIFIFOPort<const W: usize, const N: usize, const NP1: usize, const BLOCK: u32> {
pub bus: SoCPortResponder<W>,
pub fifo_bus: FIFOReadResponder<Bits<W>>,
/* private fields */
}
Fields§
§bus: SoCPortResponder<W>
§fifo_bus: FIFOReadResponder<Bits<W>>
Trait Implementations§
Source§impl<const W: usize, const N: usize, const NP1: usize, const BLOCK: u32> Block for MOSIFIFOPort<W, N, NP1, BLOCK>
impl<const W: usize, const N: usize, const NP1: usize, const BLOCK: u32> Block for MOSIFIFOPort<W, N, NP1, BLOCK>
Source§fn connect_all(&mut self)
fn connect_all(&mut self)
Connects the internal signals of the circuit - used to initialize the circuit
Source§fn update_all(&mut self)
fn update_all(&mut self)
Propogate changes from inputs to outputs within the circuit
Source§fn has_changed(&self) -> bool
fn has_changed(&self) -> bool
Returns
true
if anything in the circuit has changed (outputs or internal state)Auto Trait Implementations§
impl<const W: usize, const N: usize, const NP1: usize, const BLOCK: u32> Freeze for MOSIFIFOPort<W, N, NP1, BLOCK>
impl<const W: usize, const N: usize, const NP1: usize, const BLOCK: u32> RefUnwindSafe for MOSIFIFOPort<W, N, NP1, BLOCK>
impl<const W: usize, const N: usize, const NP1: usize, const BLOCK: u32> Send for MOSIFIFOPort<W, N, NP1, BLOCK>
impl<const W: usize, const N: usize, const NP1: usize, const BLOCK: u32> Sync for MOSIFIFOPort<W, N, NP1, BLOCK>
impl<const W: usize, const N: usize, const NP1: usize, const BLOCK: u32> Unpin for MOSIFIFOPort<W, N, NP1, BLOCK>
impl<const W: usize, const N: usize, const NP1: usize, const BLOCK: u32> UnwindSafe for MOSIFIFOPort<W, N, NP1, BLOCK>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more