pub struct Agent<C: ServerConnector> { /* private fields */ }
Implementations§
source§impl<C: ServerConnector> Agent<C>
impl<C: ServerConnector> Agent<C>
pub async fn disconnect(&mut self) -> Result<(), Error>
pub async fn join_room( &mut self, room: BareJid, nick: Option<String>, password: Option<String>, lang: &str, status: &str )
sourcepub async fn leave_room(
&mut self,
room_jid: BareJid,
nickname: RoomNick,
lang: impl Into<String>,
status: impl Into<String>
)
pub async fn leave_room( &mut self, room_jid: BareJid, nickname: RoomNick, lang: impl Into<String>, status: impl Into<String> )
Request to leave a chatroom.
If successful, an Event::RoomLeft event will be produced. This method does not remove the room from bookmarks nor remove the autojoin flag. See muc::room::leave_room for more information.
Arguments
room_jid
: The JID of the room to leave.nickname
: The nickname to use in the room.lang
: The language of the status message (empty string when unknown).status
: The status message to send.
pub async fn send_message( &mut self, recipient: Jid, type_: MessageType, lang: &str, text: &str )
pub async fn send_room_private_message( &mut self, room: BareJid, recipient: RoomNick, lang: &str, text: &str )
sourcepub async fn wait_for_events(&mut self) -> Option<Vec<Event>>
pub async fn wait_for_events(&mut self) -> Option<Vec<Event>>
Wait for new events.
Returns
Some(events)
if there are new events; multiple may be returned at once.None
if the underlying stream is closed.
pub async fn upload_file_with(&mut self, service: &str, path: &Path)
sourcepub fn bound_jid(&self) -> Option<&Jid>
pub fn bound_jid(&self) -> Option<&Jid>
Get the bound jid of the client.
If the client is not connected, this will be None.
sourcepub async fn create_room_bookmark(
&mut self,
room: &BareJid,
auto_join: bool,
user_nick: Option<String>,
room_name: Option<String>,
password: Option<String>
)
pub async fn create_room_bookmark( &mut self, room: &BareJid, auto_join: bool, user_nick: Option<String>, room_name: Option<String>, password: Option<String> )
Create a MUC bookmark.
Arguments
- room: The Jid of the room itself.
- auto_join: Whether to auto-join on client startup
- user_nick: The name of the user within the room.
- room_name: A user-friendly name for the room.
- password: The password of the room, if applicable.
Auto Trait Implementations§
impl<C> !RefUnwindSafe for Agent<C>
impl<C> Send for Agent<C>
impl<C> Sync for Agent<C>
impl<C> Unpin for Agent<C>
impl<C> !UnwindSafe for Agent<C>
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