1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
use std::cell::RefCell;
use std::io::BufRead;
#[cfg(feature = "serde-derive")]
extern crate serde;
use crate::parser::{Component, ParserError};
use crate::property::{Property, PropertyParser};
#[derive(Debug, Clone, Default)]
#[cfg_attr(feature = "serde-derive", derive(serde::Serialize, serde::Deserialize))]
pub struct VcardContact {
pub properties: Vec<Property>,
}
impl VcardContact {
pub fn new() -> VcardContact {
VcardContact {
properties: Vec::new(),
}
}
}
impl Component for VcardContact {
fn add_property(&mut self, property: Property) {
self.properties.push(property);
}
fn add_sub_component<B: BufRead>(
&mut self,
_: &str,
_: &RefCell<PropertyParser<B>>,
) -> Result<(), ParserError> {
Err(ParserError::InvalidComponent.into())
}
}