pub struct Chat {
pub user_index: i32,
pub text: String,
pub gesture: i32,
pub style_id: i32,
pub links: Vec<(String, String, bool)>,
pub tracking_id: i32,
}
Fields§
§user_index: i32
§text: String
§gesture: i32
§style_id: i32
§links: Vec<(String, String, bool)>
§tracking_id: i32
Trait Implementations§
Source§impl BaseParser for Chat
impl BaseParser for Chat
fn parse(packet: &mut HPacket) -> Self
fn append_to_packet(&self, packet: &mut HPacket)
fn get_direction() -> HDirection
fn get_packet_name() -> String
Source§impl PacketVariable for Chat
impl PacketVariable for Chat
impl StructuralPartialEq for Chat
Auto Trait Implementations§
impl Freeze for Chat
impl RefUnwindSafe for Chat
impl Send for Chat
impl Sync for Chat
impl Unpin for Chat
impl UnwindSafe for Chat
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more