From 10eb0e8cff7f0bc6b61a77a179fec55ee1dfe929 Mon Sep 17 00:00:00 2001 From: jelemux Date: Wed, 21 Oct 2020 22:01:59 +0200 Subject: basic prototype with vcard and pdf generation --- excluded/validation.rs | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 excluded/validation.rs (limited to 'excluded') diff --git a/excluded/validation.rs b/excluded/validation.rs deleted file mode 100644 index 6258dcf..0000000 --- a/excluded/validation.rs +++ /dev/null @@ -1,37 +0,0 @@ - - -pub trait Validation { - fn validate(&self) -> Result<(), ValidationError>; -} - -#[derive(Debug)] -pub struct ValidationError { - pub messages: Vec, -} - -impl std::fmt::Display for ValidationError { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - for msg in &self.messages { - write!(f, "{}\n", msg)?; - } - Ok(()) - } -} - -impl std::error::Error for ValidationError { } - -pub fn add_results(first: Result<(), ValidationError>, second: Result<(), ValidationError>) -> Result<(), ValidationError> { - if first.is_ok() && second.is_ok() { - Ok(()) - } else if first.is_ok() && second.is_err() { - second - } else if first.is_err() && second.is_ok() { - first - } else { - let mut first = first.err().unwrap(); - let mut second = second.err().unwrap(); - first.messages.append(&mut second.messages); - - Err( ValidationError{ messages: first.messages } ) - } -} \ No newline at end of file -- cgit v1.2.3