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
//! This module implements the `SetPolicy` for the `@set` tag. The `@set` tag
//! is a static tag that allows for setting default parameters within the execution
//! context. These parameters can then be inherited or overridden by subsequent
//! tags and anchors, providing a way to configure behavior globally or locally.
use Result;
use ;
/// Implements the static policy for the `@set` tag.
///
/// The `@set` tag updates the default parameters in the [`Collector`].
;