Struct xmpp_parsers::eme::ExplicitMessageEncryption
source · pub struct ExplicitMessageEncryption {
pub namespace: String,
pub name: Option<String>,
}
Expand description
Structure representing an <encryption xmlns='urn:xmpp:eme:0'/>
element.
Fields§
§namespace: String
Namespace of the encryption scheme used.
name: Option<String>
User-friendly name for the encryption scheme, should be None
for OTR,
legacy OpenPGP and OX.
Trait Implementations§
source§impl Clone for ExplicitMessageEncryption
impl Clone for ExplicitMessageEncryption
source§fn clone(&self) -> ExplicitMessageEncryption
fn clone(&self) -> ExplicitMessageEncryption
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ExplicitMessageEncryption
impl Debug for ExplicitMessageEncryption
source§impl From<ExplicitMessageEncryption> for Element
impl From<ExplicitMessageEncryption> for Element
source§fn from(elem: ExplicitMessageEncryption) -> Element
fn from(elem: ExplicitMessageEncryption) -> Element
Converts to this type from the input type.
source§impl PartialEq for ExplicitMessageEncryption
impl PartialEq for ExplicitMessageEncryption
source§fn eq(&self, other: &ExplicitMessageEncryption) -> bool
fn eq(&self, other: &ExplicitMessageEncryption) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for ExplicitMessageEncryption
impl TryFrom<Element> for ExplicitMessageEncryption
impl MessagePayload for ExplicitMessageEncryption
impl StructuralPartialEq for ExplicitMessageEncryption
Auto Trait Implementations§
impl Freeze for ExplicitMessageEncryption
impl RefUnwindSafe for ExplicitMessageEncryption
impl Send for ExplicitMessageEncryption
impl Sync for ExplicitMessageEncryption
impl Unpin for ExplicitMessageEncryption
impl UnwindSafe for ExplicitMessageEncryption
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