Lines Matching defs:GenericErrorPacket
7781 pub struct GenericErrorPacket { struct
7782 uci_packet: Arc<UciPacketData>,
7783 uci_notification: Arc<UciNotificationData>,
7784 core_notification: Arc<CoreNotificationData>,
7785 generic_error: Arc<GenericErrorData>,
7829 impl Packet for GenericErrorPacket { implementation
7850 impl TryFrom<UciPacketPacket> for GenericErrorPacket { implementation
7856 impl GenericErrorPacket { implementation
7894 impl Into<UciPacketPacket> for GenericErrorPacket { implementation
7899 impl Into<UciNotificationPacket> for GenericErrorPacket { implementation
7904 impl Into<CoreNotificationPacket> for GenericErrorPacket { implementation
7910 pub fn build(self) -> GenericErrorPacket { in build()