Struct xmpp::builder::ClientBuilder
source · pub struct ClientBuilder<'a, C: ServerConnector> { /* private fields */ }
Implementations§
source§impl ClientBuilder<'_, StartTlsServerConnector>
impl ClientBuilder<'_, StartTlsServerConnector>
pub fn new<'a>( jid: BareJid, password: &'a str, ) -> ClientBuilder<'a, StartTlsServerConnector>
Available on crate features
starttls-rust
or starttls-native
only.source§impl<C: ServerConnector> ClientBuilder<'_, C>
impl<C: ServerConnector> ClientBuilder<'_, C>
pub fn new_with_connector<'a>( jid: BareJid, password: &'a str, server_connector: C, ) -> ClientBuilder<'a, C>
sourcepub fn set_resource(self, resource: &str) -> Self
pub fn set_resource(self, resource: &str) -> Self
Optionally set a resource associated to this device on the client
pub fn set_client(self, type_: ClientType, name: &str) -> Self
pub fn set_website(self, url: &str) -> Self
pub fn set_default_nick(self, nick: &str) -> Self
pub fn set_lang(self, lang: Vec<String>) -> Self
sourcepub fn set_timeouts(self, timeouts: Timeouts) -> Self
pub fn set_timeouts(self, timeouts: Timeouts) -> Self
Configure the timeouts used.
See [Timeouts
] for more information on the semantics and the
defaults (which are used unless you call this method).
pub fn enable_feature(self, feature: ClientFeature) -> Self
pub fn build(self) -> Agent<C>
Auto Trait Implementations§
impl<'a, C> Freeze for ClientBuilder<'a, C>where
C: Freeze,
impl<'a, C> RefUnwindSafe for ClientBuilder<'a, C>where
C: RefUnwindSafe,
impl<'a, C> Send for ClientBuilder<'a, C>
impl<'a, C> Sync for ClientBuilder<'a, C>where
C: Sync,
impl<'a, C> Unpin for ClientBuilder<'a, C>
impl<'a, C> UnwindSafe for ClientBuilder<'a, C>where
C: UnwindSafe,
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