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 duplicate 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 for RoomInviteError
impl PartialEq for RoomInviteError
impl StructuralPartialEq for RoomInviteError
Auto Trait Implementations§
impl Freeze for RoomInviteError
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