use yew::prelude::*; use input_objects::*; pub mod input_objects; pub mod main; pub mod name; pub mod photo; pub mod birthday; pub mod address; pub mod telephone; pub trait VCardPropertyInputComponent
: Component where P: vcard::properties::Property, T: VCardPropertyInputObject
{
fn get_input_object(&self) -> T;
fn get_title(&self) -> String;
fn get_errors(&self) -> Vec