From b7875dc4072abeec26f93b3d322d00cecff23cfb Mon Sep 17 00:00:00 2001 From: jelemux Date: Fri, 26 Feb 2021 16:46:50 +0100 Subject: add communication property --- src/model/vcard.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/model/vcard.rs') diff --git a/src/model/vcard.rs b/src/model/vcard.rs index 24a47ff..4670fe7 100644 --- a/src/model/vcard.rs +++ b/src/model/vcard.rs @@ -1,4 +1,5 @@ use crate::model::property_groups::address::Address; +use crate::model::property_groups::communication::Communication; use crate::model::property_groups::name::Name; use crate::model::property_groups::organizational::Organizational; use crate::model::property_groups::other_identification::OtherIdentification; @@ -10,6 +11,7 @@ pub struct VCardData { pub names: Vec, pub addresses: Vec
, pub telephones: Vec, + pub communications: Vec, pub other_identifications: Vec, pub organizationals: Vec, } @@ -28,6 +30,7 @@ impl VCardData { names: Vec::new(), addresses: Vec::new(), telephones: Vec::new(), + communications: Vec::new(), other_identifications: Vec::new(), organizationals: Vec::new(), } @@ -35,6 +38,7 @@ impl VCardData { make_vec_adder_fn!( fn add_name names => name: Name ); make_vec_adder_fn!( fn add_address addresses => address: Address ); make_vec_adder_fn!( fn add_telephone telephones => telephone: Telephone ); + make_vec_adder_fn!( fn add_communication communications => communication: Communication ); make_vec_adder_fn!( fn add_other_identification other_identifications => other_identification: OtherIdentification ); make_vec_adder_fn!( fn add_organizational organizationals => organizational: Organizational ); } -- cgit v1.2.3