Module types

Module types 

Source
Expand description

Types implementing various merge strategies.

Modules§

first
A no-op merge that retains the first value.
last
A no-op merge that retains the last value.
lines
Strings concatenated with \n.
no_merge
Explicitly disallow merging of values.
ordered
Ordered merging of values.
overridable
Overridable values.

Structs§

First
A no-op merge that retains the first value.
Last
A no-op merge that retains the last value.
Lines
Strings concatenated with \n.
NoMerge
An unmergeable value.
Ordered
A value which preserves ordering.
Overridable
An overridable value based on priority.