pub struct Shout {
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 Shout
impl BaseParser for Shout
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 Shout
impl PacketVariable for Shout
impl StructuralPartialEq for Shout
Auto Trait Implementations§
impl Freeze for Shout
impl RefUnwindSafe for Shout
impl Send for Shout
impl Sync for Shout
impl Unpin for Shout
impl UnwindSafe for Shout
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