Home
last modified time | relevance | path

Searched defs:UciCommandPacket (Results 1 – 2 of 2) sorted by relevance

/external/rust/pica/src/
Duci_packets.rs2492 pub struct UciCommandPacket { struct
2493 uci_packet: Arc<UciPacketData>,
2494 uci_command: Arc<UciCommandData>,
2582 impl Packet for UciCommandPacket { implementation
2603 impl TryFrom<UciPacketPacket> for UciCommandPacket { implementation
2609 impl UciCommandPacket { implementation
2664 impl Into<UciPacketPacket> for UciCommandPacket { implementation
2670 pub fn build(self) -> UciCommandPacket { in build()
3389 fn into(self) -> UciCommandPacket { in into()
3417 fn into(self) -> UciCommandPacket { in into()
[all …]
Dlib.rs455 async fn command(&mut self, device_handle: usize, cmd: UciCommandPacket) { in command()