Struct xmpp::builder::ClientBuilder
source · pub struct ClientBuilder<'a, C: ServerConnector> { /* private fields */ }
Implementations§
source§impl ClientBuilder<'_, ServerConfig>
impl ClientBuilder<'_, ServerConfig>
pub fn new<'a>( jid: BareJid, password: &'a str ) -> ClientBuilder<'a, ServerConfig>
source§impl<C: ServerConnector> ClientBuilder<'_, C>
impl<C: ServerConnector> ClientBuilder<'_, C>
pub fn new_with_server<'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
pub fn set_store(self, store: Box<dyn BlobStoreInterface>) -> Self
pub fn enable_feature(self, feature: ClientFeature) -> Self
pub async fn build(self) -> Agent<C>
Auto Trait Implementations§
impl<'a, C> !RefUnwindSafe for ClientBuilder<'a, C>
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>
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