pub struct JabberId(/* private fields */);Expand description
Jabber specific user ID
Implementations§
Source§impl JabberId
impl JabberId
pub fn get<'a>(&self, client: &'a dyn Client) -> Result<JabberIdFull, Error>
pub fn get_wadl<'a>(&self, client: &'a dyn Client) -> Result<Resource, Error>
pub fn put<'a>( &self, client: &'a dyn Client, representation: &JabberIdFull, ) -> Result<(), Error>
pub fn patch<'a>( &self, client: &'a dyn Client, representation: &JabberIdDiff, ) -> Result<(), Error>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JabberId
impl RefUnwindSafe for JabberId
impl Send for JabberId
impl Sync for JabberId
impl Unpin for JabberId
impl UnwindSafe for JabberId
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