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