struct DummyUsbClient {
fired: VolatileCell<bool>,
}
Fields§
§fired: VolatileCell<bool>
Trait Implementations§
Source§impl TransmitClient for DummyUsbClient
impl TransmitClient for DummyUsbClient
Source§fn transmitted_buffer(
&self,
_: &'static mut [u8],
_: usize,
_: Result<(), ErrorCode>,
)
fn transmitted_buffer( &self, _: &'static mut [u8], _: usize, _: Result<(), ErrorCode>, )
A call to
Transmit::transmit_buffer
completed. Read moreSource§fn transmitted_word(&self, _rval: Result<(), ErrorCode>)
fn transmitted_word(&self, _rval: Result<(), ErrorCode>)
A call to
Transmit::transmit_word
completed. Read moreAuto Trait Implementations§
impl !Freeze for DummyUsbClient
impl !RefUnwindSafe for DummyUsbClient
impl Send for DummyUsbClient
impl !Sync for DummyUsbClient
impl Unpin for DummyUsbClient
impl UnwindSafe for DummyUsbClient
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