pub struct CPUEmulator { /* private fields */ }Implementations§
Source§impl CPUEmulator
impl CPUEmulator
pub fn new(id: usize, num_transducers: usize) -> Self
pub const fn break_down(&mut self)
pub const fn repair(&mut self)
pub const fn idx(&self) -> usize
pub const fn num_transducers(&self) -> usize
pub const fn dc_sys_time(&self) -> DcSysTime
pub const fn synchronized(&self) -> bool
pub const fn fpga(&self) -> &FPGAEmulator
pub const fn fpga_mut(&mut self) -> &mut FPGAEmulator
pub const fn silencer_strict(&self) -> bool
pub const fn reads_fpga_state(&self) -> bool
pub const fn port_a_podr(&self) -> u8
pub const fn rx(&self) -> RxMessage
pub fn send(&mut self, tx: &[TxMessage])
pub fn init(&mut self)
pub fn update_with_sys_time(&mut self, sys_time: DcSysTime)
pub const fn should_update(&self) -> bool
pub fn set_last_msg_id(&mut self, msg_id: MsgId)
Auto Trait Implementations§
impl !Freeze for CPUEmulator
impl !RefUnwindSafe for CPUEmulator
impl Send for CPUEmulator
impl !Sync for CPUEmulator
impl Unpin for CPUEmulator
impl UnwindSafe for CPUEmulator
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more