pub struct RoomChatSettings {
pub mode: i32,
pub bubble_width: i32,
pub scroll_speed: i32,
pub full_hear_range: i32,
pub flood_sensitivity: i32,
}
Fields§
§mode: i32
§bubble_width: i32
§scroll_speed: i32
§full_hear_range: i32
§flood_sensitivity: i32
Trait Implementations§
source§impl BaseParser for RoomChatSettings
impl BaseParser for RoomChatSettings
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 Clone for RoomChatSettings
impl Clone for RoomChatSettings
source§fn clone(&self) -> RoomChatSettings
fn clone(&self) -> RoomChatSettings
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RoomChatSettings
impl Debug for RoomChatSettings
source§impl Default for RoomChatSettings
impl Default for RoomChatSettings
source§fn default() -> RoomChatSettings
fn default() -> RoomChatSettings
Returns the “default value” for a type. Read more
source§impl PacketVariable for RoomChatSettings
impl PacketVariable for RoomChatSettings
source§impl PartialEq<RoomChatSettings> for RoomChatSettings
impl PartialEq<RoomChatSettings> for RoomChatSettings
source§fn eq(&self, other: &RoomChatSettings) -> bool
fn eq(&self, other: &RoomChatSettings) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RoomChatSettings
Auto Trait Implementations§
impl RefUnwindSafe for RoomChatSettings
impl Send for RoomChatSettings
impl Sync for RoomChatSettings
impl Unpin for RoomChatSettings
impl UnwindSafe for RoomChatSettings
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