valence_protocol/packets/play/
request_command_completions_c2s.rs
1use crate::{Bounded, Decode, Encode, Packet, VarInt};
2
3#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
4pub struct RequestCommandCompletionsC2s<'a> {
5 pub transaction_id: VarInt,
6 pub text: Bounded<&'a str, 32500>,
7}