xml-rs 0.8.14

An XML library in pure Rust
Documentation
#![macro_use]

//! Contains several macros used in this crate.

macro_rules! gen_setter {
    ($target:ty, $field:ident : into $t:ty) => {
        impl $target {
            /// See [`ParserConfig`][crate::ParserConfig] fields docs for details
            #[inline]
            pub fn $field<T: Into<$t>>(mut self, value: T) -> $target {
                self.$field = value.into();
                self
            }
        }
    };
    ($target:ty, $field:ident : val $t:ty) => {
        impl $target {
            /// See [`ParserConfig`][crate::ParserConfig] fields docs for details
            #[inline]
            pub fn $field(mut self, value: $t) -> $target {
                self.$field = value;
                self
            }
        }
    };
    ($target:ty, $field:ident : delegate $t:ty) => {
        impl $target {
            /// See [`ParserConfig`][crate::ParserConfig] fields docs for details
            #[inline]
            pub fn $field(mut self, value: $t) -> $target {
                self.c.$field = value;
                self
            }
        }
    };
    ($target:ty, $field:ident : c2 $t:ty) => {
        impl $target {
            /// See [`ParserConfig2`][crate::reader::ParserConfig] fields docs for details
            #[inline]
            #[must_use]
            pub fn $field(self, value: $t) -> ParserConfig2 {
                ParserConfig2 {
                    c: self,
                    ..Default::default()
                }
                .$field(value)
            }
        }
    };
}

macro_rules! gen_setters {
    ($target:ty, $($field:ident : $k:tt $tpe:ty),+) => ($(
        gen_setter! { $target, $field : $k $tpe }
    )+)
}