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§
Source§impl FromXml for VCard
impl FromXml for VCard
Source§type Builder = VCardFromXmlBuilder
type Builder = VCardFromXmlBuilder
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 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