1use crate::{Decode, Encode, Packet}; 2 3#[derive(Copy, Clone, Debug, Encode, Decode, Packet)] 4pub struct RenameItemC2s<'a> { 5 // Surprisingly, this is not bounded as of 1.20.1. 6 pub item_name: &'a str, 7}