Remove Mail::import_from_string()

This commit is contained in:
Matthias Beyer 2016-09-21 19:06:47 +02:00
parent d4be497d41
commit 3136060ecf

View file

@ -41,11 +41,6 @@ impl<'a> Mail<'a> {
.map(|r| Mail(r)) .map(|r| Mail(r))
} }
/// Imports a mail from the String passed
pub fn import_from_string<S: AsRef<str>>(store: &Store, s: S) -> Result<Mail> {
unimplemented!()
}
/// Opens a mail by the passed hash /// Opens a mail by the passed hash
pub fn open<S: AsRef<str>>(store: &Store, hash: S) -> Result<Option<Mail>> { pub fn open<S: AsRef<str>>(store: &Store, hash: S) -> Result<Option<Mail>> {
unimplemented!() unimplemented!()