Struct xmpp_parsers::caps::Caps
source · pub struct Caps {
pub ext: Option<String>,
pub node: String,
pub hash: Hash,
}
Expand description
Represents a capability hash for a given client.
Fields§
§ext: Option<String>
Deprecated list of additional feature bundles.
node: String
A URI identifying an XMPP application.
hash: Hash
The hash of that application’s disco#info.
Warning: This protocol is insecure, you may want to switch to ecaps2 instead, see this email.
Implementations§
Trait Implementations§
source§impl TryFrom<Element> for Caps
impl TryFrom<Element> for Caps
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
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