1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#![macro_use]
//! Contains several macros used in this crate.
macro_rules! gen_setter {
($(#[$comments:meta])* $field:ident : into $t:ty) => {
$(#[$comments])*
///
/// <small>See [`ParserConfig`][crate::ParserConfig] fields docs for details</small>
#[inline]
#[must_use]
pub fn $field<T: Into<$t>>(mut self, value: T) -> Self {
self.$field = value.into();
self
}
};
($(#[$comments:meta])* $field:ident : val $t:ty) => {
$(#[$comments])*
///
/// <small>See [`ParserConfig`][crate::ParserConfig] fields docs for details</small>
#[inline]
#[must_use]
pub const fn $field(mut self, value: $t) -> Self {
self.$field = value;
self
}
};
}
macro_rules! gen_setters {
($target:ident, $($(#[$comments:meta])* $field:ident : $k:tt $tpe:ty),+) => (
impl $target {$(
gen_setter! { $(#[$comments])* $field : $k $tpe }
)+
})
}