azalea_protocol/packets/config/
c_custom_report_details.rs

1use azalea_buf::AzBuf;
2use azalea_protocol_macros::ClientboundConfigPacket;
3use indexmap::IndexMap;
4
5#[derive(AzBuf, ClientboundConfigPacket, Clone, Debug, PartialEq)]
6pub struct ClientboundCustomReportDetails {
7    pub details: IndexMap<String, String>,
8}