1
2
3
4
5
6
7
8
9
10
use std::borrow::Cow;

use valence_text::Text;

use crate::{Decode, Encode, Packet};

#[derive(Clone, Debug, Encode, Decode, Packet)]
pub struct SubtitleS2c<'a> {
    pub subtitle_text: Cow<'a, Text>,
}