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