Struct xmpp::agent::Agent

source ·
pub struct Agent<C: ServerConnector> { /* private fields */ }

Implementations§

source§

impl<C: ServerConnector> Agent<C>

source

pub async fn disconnect(&mut self) -> Result<(), Error>

source

pub async fn join_room( &mut self, room: BareJid, nick: Option<String>, password: Option<String>, lang: &str, status: &str, )

source

pub async fn leave_room( &mut self, room_jid: BareJid, nickname: RoomNick, lang: impl Into<String>, status: impl Into<String>, )

Send a “leave room” request to the server (specifically, an “unavailable” presence stanza).

The returned future will resolve when the request has been sent, not when the room has actually been left.

If successful, a RoomLeft event should be received later as a confirmation.

See: https://xmpp.org/extensions/xep-0045.html#exit

Note that this method does NOT remove the room from the auto-join list; the latter is more a list of bookmarks that the account knows about and that have a flag set to indicate that they should be joined automatically after connecting (see the JoinRoom event).

Regarding the latter, see the these minutes about auto-join behavior: https://docs.modernxmpp.org/meetings/2019-01-brussels/#bookmarks

§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.
  • status: The status message to send.
source

pub async fn send_message( &mut self, recipient: Jid, type_: MessageType, lang: &str, text: &str, ) -> Result<String, Error>

Send a message to a given recipient.

Returns the generated message ID.

§Arguments
  • recipient: The JID of the recipient.
  • type_: The type of message to send. For a message to a MUC room, this should be MessageType::Groupchat. For a private message to a MUC room member or regular contact, this should be MessageType::Chat.
  • lang: The language of the message. (See IETF RFC 5646)
  • text: The text of the message.
source

pub async fn send_room_private_message( &mut self, room: BareJid, recipient: RoomNick, lang: &str, text: &str, ) -> Result<String, Error>

Send a private message to a given MUC room member.

Returns the generated message ID.

§Arguments
  • room: The JID of the room.
  • recipient: The nickname of the recipient within the room.
  • type_: The type of message to send. For a message to a MUC room, this should be MessageType::Groupchat. For a private message to a MUC room member or regular contact, this should be MessageType::Chat.
  • lang: The language of the message. (See IETF RFC 5646)
  • text: The text of the message.

Returns the generated message ID, or an error if the message could not be sent.

source

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.
source

pub async fn upload_file_with(&mut self, service: &str, path: &Path)

source

pub fn bound_jid(&self) -> Option<&Jid>

Get the bound jid of the client.

If the client is not connected, this will be None.

Auto Trait Implementations§

§

impl<C> Freeze for Agent<C>
where C: Freeze, <C as ServerConnector>::Stream: Freeze,

§

impl<C> !RefUnwindSafe for Agent<C>

§

impl<C> Send for Agent<C>

§

impl<C> Sync for Agent<C>
where C: Sync, <C as ServerConnector>::Stream: Sync,

§

impl<C> Unpin for Agent<C>

§

impl<C> !UnwindSafe for Agent<C>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> ErasedDestructor for T
where T: 'static,

source§

impl<T> MaybeSendSync for T