pub struct RoomFilterSettings {
pub bad_words: Vec<String>,
}
Fields§
§bad_words: Vec<String>
Trait Implementations§
source§impl BaseParser for RoomFilterSettings
impl BaseParser for RoomFilterSettings
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 RoomFilterSettings
impl Clone for RoomFilterSettings
source§fn clone(&self) -> RoomFilterSettings
fn clone(&self) -> RoomFilterSettings
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 RoomFilterSettings
impl Debug for RoomFilterSettings
source§impl Default for RoomFilterSettings
impl Default for RoomFilterSettings
source§fn default() -> RoomFilterSettings
fn default() -> RoomFilterSettings
Returns the “default value” for a type. Read more
source§impl PacketVariable for RoomFilterSettings
impl PacketVariable for RoomFilterSettings
source§impl PartialEq<RoomFilterSettings> for RoomFilterSettings
impl PartialEq<RoomFilterSettings> for RoomFilterSettings
source§fn eq(&self, other: &RoomFilterSettings) -> bool
fn eq(&self, other: &RoomFilterSettings) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RoomFilterSettings
Auto Trait Implementations§
impl RefUnwindSafe for RoomFilterSettings
impl Send for RoomFilterSettings
impl Sync for RoomFilterSettings
impl Unpin for RoomFilterSettings
impl UnwindSafe for RoomFilterSettings
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