pub struct Caps {
pub ext: Option<String>,
pub node: String,
pub hash: Algo,
pub ver: Vec<u8>,
}
Expand description
Represents a capability hash for a given client.
Warning: This protocol is insecure, you may want to switch to ecaps2 instead, see this email.
Fields§
§ext: Option<String>
Deprecated list of additional feature bundles.
node: String
A URI identifying an XMPP application.
hash: Algo
The algorithm of the hash of these caps.
ver: Vec<u8>
The hash of that application’s disco#info.
Implementations§
Trait Implementations§
impl PresencePayload for Caps
Auto Trait Implementations§
impl Freeze for Caps
impl RefUnwindSafe for Caps
impl Send for Caps
impl Sync for Caps
impl Unpin for Caps
impl UnwindSafe for Caps
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