Home
last modified time | relevance | path

Searched refs:ReceiveFuture (Results 1 – 1 of 1) sorted by relevance

/packages/modules/Bluetooth/tools/rootcanal/rust/src/lmp/procedure/
Dmod.rs39 fn receive_hci_command<C: TryFrom<hci::Command>>(&self) -> ReceiveFuture<'_, Self, C> { in receive_hci_command()
40 ReceiveFuture(Self::poll_hci_command, self) in receive_hci_command()
43 fn receive_lmp_packet<P: TryFrom<lmp::LmpPacket>>(&self) -> ReceiveFuture<'_, Self, P> { in receive_lmp_packet()
44 ReceiveFuture(Self::poll_lmp_packet, self) in receive_lmp_packet()
67 pub struct ReceiveFuture<'a, C: ?Sized, P>(fn(&'a C) -> Poll<P>, &'a C); struct
69 impl<'a, C, O> Future for ReceiveFuture<'a, C, O> implementation