Struct xmpp_parsers::vcard_update::VCardUpdate
source · pub struct VCardUpdate {
pub photo: Option<Photo>,
}
Expand description
The presence payload for an avatar VCard update
Fields§
§photo: Option<Photo>
The photo element. Is empty if “a client is not yet ready to advertise an image”.
Trait Implementations§
source§impl Clone for VCardUpdate
impl Clone for VCardUpdate
source§fn clone(&self) -> VCardUpdate
fn clone(&self) -> VCardUpdate
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 VCardUpdate
impl Debug for VCardUpdate
source§impl From<VCardUpdate> for Element
impl From<VCardUpdate> for Element
source§fn from(other: VCardUpdate) -> Self
fn from(other: VCardUpdate) -> Self
Converts to this type from the input type.
source§impl FromXml for VCardUpdate
impl FromXml for VCardUpdate
source§impl IntoXml for VCardUpdate
impl IntoXml for VCardUpdate
source§impl PartialEq for VCardUpdate
impl PartialEq for VCardUpdate
source§fn eq(&self, other: &VCardUpdate) -> bool
fn eq(&self, other: &VCardUpdate) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for VCardUpdate
impl TryFrom<Element> for VCardUpdate
impl StructuralPartialEq for VCardUpdate
Auto Trait Implementations§
impl Freeze for VCardUpdate
impl RefUnwindSafe for VCardUpdate
impl Send for VCardUpdate
impl Sync for VCardUpdate
impl Unpin for VCardUpdate
impl UnwindSafe for VCardUpdate
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