pub struct Agent { /* private fields */ }
Implementations§
source§impl Agent
impl Agent
pub async fn misc_receiver( &self, ) -> Arc<Mutex<UnboundedReceiver<NonTransactional>>>
pub async fn send_stanza(&mut self, _stanza: Element) -> Result<(), Error>
pub async fn send_iq(&self, req: IqRequest) -> Result<IqResponse>
pub async fn disconnect(&mut self) -> Result<(), Error>
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.
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, )
pub async fn upload_file_with(&mut self, service: &str, path: &Path)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Agent
impl !RefUnwindSafe for Agent
impl Send for Agent
impl Sync for Agent
impl Unpin for Agent
impl !UnwindSafe for Agent
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