Struct tagger::Element[][src]

pub struct Element<T> { /* fields omitted */ }

An element.

Implementations

impl<T: Write> Element<T>[src]

pub fn new(writer: T) -> Self[src]

Create a new element.

pub fn single_ext<F>(
    &mut self,
    tag: &str,
    tags: [&str; 2],
    func: F
) -> Result<&mut Self, Error> where
    F: FnOnce(&'x mut AttributeWriter<'y, T>) -> Result<&'x mut AttributeWriter<'y, T>, Error>, 
[src]

Write a element that doesnt have an ending tag. i.e. it can only have attributes. Some common tag types are in tag_types.

pub fn single<F>(&mut self, tag: &str, func: F) -> Result<&mut Self, Error> where
    F: FnOnce(&'x mut AttributeWriter<'y, T>) -> Result<&'x mut AttributeWriter<'y, T>, Error>, 
[src]

pub fn elem_no_attr<F>(
    &mut self,
    tag: &str,
    func: F
) -> Result<&mut Self, Error> where
    F: FnOnce(&'x mut Element<T>) -> Result<&'x mut Element<T>, Error>, 
[src]

Shorthand for Element::elem with the attribute builder functionality omitted.

pub fn elem<F>(&mut self, tag: &str, func: F) -> Result<&mut Self, Error> where
    F: FnOnce(ElementHeaderWriter<'_, T>) -> Result<&mut Element<T>, Error>, 
[src]

Write a element that has an ending tag. The user is required to feed the element back into this function thus proving that they called ElementHeaderWriter::write.

Trait Implementations

impl<T: Write> Write for Element<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Element<T> where
    T: RefUnwindSafe

impl<T> Send for Element<T> where
    T: Send

impl<T> Sync for Element<T> where
    T: Sync

impl<T> Unpin for Element<T> where
    T: Unpin

impl<T> UnwindSafe for Element<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.