[][src]Trait unhtml::Text

pub trait Text<'b, 'a: 'b, T: 'a> {
    fn inner_text(&'b mut self) -> Result<T>;
fn attr(&'b mut self, attr: &'b str) -> Result<T>; }

Required methods

fn inner_text(&'b mut self) -> Result<T>

fn attr(&'b mut self, attr: &'b str) -> Result<T>

Loading content...

Implementors

impl<'b, 'a: 'b, T, I> Text<'b, 'a, T> for I where
    T: FromText + 'a,
    I: Iterator<Item = ElementRef<'a>> + 'b, 
[src]

Loading content...