pub struct GetGuestRoomResult {
pub enter_room: bool,
pub data: GuestRoomData,
pub room_forward: bool,
pub staff_pick: bool,
pub is_group_member: bool,
pub all_in_room_muted: bool,
pub room_moderation_settings: RoomModerationSettings,
pub can_mute: bool,
pub chat_settings: RoomChatSettings,
}
Fields§
§enter_room: bool
§data: GuestRoomData
§room_forward: bool
§staff_pick: bool
§is_group_member: bool
§all_in_room_muted: bool
§room_moderation_settings: RoomModerationSettings
§can_mute: bool
§chat_settings: RoomChatSettings
Trait Implementations§
source§impl BaseParser for GetGuestRoomResult
impl BaseParser for GetGuestRoomResult
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 GetGuestRoomResult
impl Clone for GetGuestRoomResult
source§fn clone(&self) -> GetGuestRoomResult
fn clone(&self) -> GetGuestRoomResult
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 GetGuestRoomResult
impl Debug for GetGuestRoomResult
source§impl Default for GetGuestRoomResult
impl Default for GetGuestRoomResult
source§fn default() -> GetGuestRoomResult
fn default() -> GetGuestRoomResult
Returns the “default value” for a type. Read more
source§impl PacketVariable for GetGuestRoomResult
impl PacketVariable for GetGuestRoomResult
source§impl PartialEq<GetGuestRoomResult> for GetGuestRoomResult
impl PartialEq<GetGuestRoomResult> for GetGuestRoomResult
source§fn eq(&self, other: &GetGuestRoomResult) -> bool
fn eq(&self, other: &GetGuestRoomResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetGuestRoomResult
Auto Trait Implementations§
impl RefUnwindSafe for GetGuestRoomResult
impl Send for GetGuestRoomResult
impl Sync for GetGuestRoomResult
impl Unpin for GetGuestRoomResult
impl UnwindSafe for GetGuestRoomResult
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