summaryrefslogtreecommitdiffstats
path: root/lib/domain/libimagcontact/src/contact.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2017-09-23 17:51:35 +0200
committerMatthias Beyer <mail@beyermatthias.de>2017-10-31 19:09:43 +0100
commit04182f5cb665a41264d3421a66b07719fb696381 (patch)
tree72beef53ee073d3484e192ec0eff5901af4ab36c /lib/domain/libimagcontact/src/contact.rs
parenteaa9ad5993b50fc28e6c79639c47d301a0610b65 (diff)
Add initial layout of code
Diffstat (limited to 'lib/domain/libimagcontact/src/contact.rs')
-rw-r--r--lib/domain/libimagcontact/src/contact.rs49
1 files changed, 49 insertions, 0 deletions
diff --git a/lib/domain/libimagcontact/src/contact.rs b/lib/domain/libimagcontact/src/contact.rs
new file mode 100644
index 00000000..d2cc3059
--- /dev/null
+++ b/lib/domain/libimagcontact/src/contact.rs
@@ -0,0 +1,49 @@
+//
+// imag - the personal information management suite for the commandline
+// Copyright (C) 2015, 2016 Matthias Beyer <mail@beyermatthias.de> and contributors
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; version
+// 2.1 of the License.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+//
+
+use vobject::Component;
+
+use libimagstore::store::Entry;
+use libimagentryref::reference::Ref;
+
+use error::Result;
+
+/// Trait to be implemented on ::libimagstore::store::Entry
+///
+/// Based on the functionality from libimagentryref, for fetching the Ical data from disk
+pub trait Contact : Ref {
+
+ // getting data
+
+ fn get_contact_data(&self) -> Result<ContactData>;
+
+ // More convenience functionality may follow
+
+}
+
+impl Contact for Entry {
+ fn get_contact_data(&self) -> Result<ContactData> {
+ unimplemented!()
+ }
+}
+
+pub struct ContactData {
+ components: Vec<Component>,
+}
+