pub struct DfuState<H: Handler> { /* private fields */ }Expand description
Internal state for USB DFU
Implementations§
Trait Implementations§
Source§impl<H: Handler> Handler for DfuState<H>
impl<H: Handler> Handler for DfuState<H>
Source§fn control_out(
&mut self,
req: ControlRequest,
data: &[u8],
) -> Option<OutResponse>
fn control_out( &mut self, req: ControlRequest, data: &[u8], ) -> Option<OutResponse>
Called when a control request is received with direction HostToDevice. Read more
Source§fn control_in<'a>(
&'a mut self,
req: ControlRequest,
buf: &'a mut [u8],
) -> Option<InResponse<'a>>
fn control_in<'a>( &'a mut self, req: ControlRequest, buf: &'a mut [u8], ) -> Option<InResponse<'a>>
Called when a control request is received with direction DeviceToHost. Read more
Source§fn enabled(&mut self, _enabled: bool)
fn enabled(&mut self, _enabled: bool)
Called when the USB device has been enabled or disabled.
Source§fn addressed(&mut self, _addr: u8)
fn addressed(&mut self, _addr: u8)
Called when the host has set the address of the device to
addr.Source§fn configured(&mut self, _configured: bool)
fn configured(&mut self, _configured: bool)
Called when the host has enabled or disabled the configuration of the device.
Source§fn suspended(&mut self, _suspended: bool)
fn suspended(&mut self, _suspended: bool)
Called when the bus has entered or exited the suspend state.
Source§fn remote_wakeup_enabled(&mut self, _enabled: bool)
fn remote_wakeup_enabled(&mut self, _enabled: bool)
Called when remote wakeup feature is enabled or disabled.
Source§fn set_alternate_setting(
&mut self,
iface: InterfaceNumber,
alternate_setting: u8,
)
fn set_alternate_setting( &mut self, iface: InterfaceNumber, alternate_setting: u8, )
Called when a “set alternate setting” control request is done on the interface.
Source§fn get_string(&mut self, index: StringIndex, lang_id: u16) -> Option<&str>
fn get_string(&mut self, index: StringIndex, lang_id: u16) -> Option<&str>
Called when a GET_DESCRIPTOR STRING control request is received.
Auto Trait Implementations§
impl<H> Freeze for DfuState<H>where
H: Freeze,
impl<H> RefUnwindSafe for DfuState<H>where
H: RefUnwindSafe,
impl<H> Send for DfuState<H>where
H: Send,
impl<H> Sync for DfuState<H>where
H: Sync,
impl<H> Unpin for DfuState<H>where
H: Unpin,
impl<H> UnwindSafe for DfuState<H>where
H: UnwindSafe,
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