use crate::*; pub struct FieldH(pub Theme, pub Label, pub Value); impl, V: Content> HasContent for FieldH { fn content (&self) -> impl Content { Bsp::e(&self.1, &self.2) } } pub struct FieldV(pub Theme, pub Label, pub Value); impl, V: Content> HasContent for FieldV { fn content (&self) -> impl Content { Bsp::s(&self.1, &self.2) } }