pub(crate) trait LayoutHTMLInputElementHelpers<'dom> {
    // Required methods
    fn value_for_layout(self) -> Cow<'dom, str>;
    fn size_for_layout(self) -> u32;
    fn selection_for_layout(self) -> Option<Range<usize>>;
}Required Methods§
Sourcefn value_for_layout(self) -> Cow<'dom, str>
 
fn value_for_layout(self) -> Cow<'dom, str>
Return a string that represents the contents of the element for layout.