pub struct Room {
pub status: RoomStatus,
pub jid: BareJid,
pub nick: RoomNick,
pub info: Option<DiscoInfoResult>,
pub members: BTreeMap<OccupantId, RoomMember>,
}
Expand description
A chatroom based on the MUC protocol.
Members are stored with a RoomNick->OccupantId mapping, because the latter is guaranteed to be stable
Fields§
§status: RoomStatus
§jid: BareJid
§nick: RoomNick
Nickname associated with the user in a certain Room.
- when RoomStatus::Joining, it’s the nick requested by the client
- when RoomStatus::Joined, it’s the nick approved by the server
Indeed, the server may have reserved nicks, or other reasons to rewrite the user’s nickname.
info: Option<DiscoInfoResult>
§members: BTreeMap<OccupantId, RoomMember>
Implementations§
Source§impl Room
impl Room
pub fn message<'a>(&self, message: &'a str) -> RoomMessageSettings<'a>
pub fn member<'a>(&'a self, id: &OccupantId) -> Option<&'a RoomMember>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Room
impl RefUnwindSafe for Room
impl Send for Room
impl Sync for Room
impl Unpin for Room
impl UnwindSafe for Room
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