pub struct VCard {
pub photo: Option<Photo>,
pub payloads: Vec<Element>,
}
Expand description
A <vCard>
element; only the <PHOTO>
element is supported for this legacy vCard ; the rest is ignored.
Fields§
§photo: Option<Photo>
A photo element.
payloads: Vec<Element>
Every other element in the vCard.
Trait Implementations§
impl IqResultPayload for VCard
impl IqSetPayload for VCard
impl StructuralPartialEq for VCard
Auto Trait Implementations§
impl Freeze for VCard
impl RefUnwindSafe for VCard
impl Send for VCard
impl Sync for VCard
impl Unpin for VCard
impl UnwindSafe for VCard
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