use yew::prelude::*; use vcard::properties; use vcard::parameters; use vcard::values::{self, text}; #[derive(Clone)] pub struct Birthday { pub year: u16, pub month: u8, pub day: u8, }