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§
Source§impl FromXml for Caps
impl FromXml for Caps
Source§type Builder = CapsFromXmlBuilder
type Builder = CapsFromXmlBuilder
A builder type used to construct the element. Read more
Source§fn from_events(
name: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( name: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
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