Trait rapid_xml::tree::DeTuple[][src]

pub trait DeTuple {
    type Output;
    fn detuple(self) -> Self::Output;
}
Expand description

Utility that turns single-element tuple into that element and keeps multi-element tuples as they are

Associated Types

The output type - a single element or >=2 element tuple

Required methods

Perform the transformation

Implementations on Foreign Types

Implementors