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