serde_hex

Module config

Source
Expand description

SerHex configuration variants.

This module is a collection of marker types which implement the possible combinations of config values described by the HexConf trait. All config values are supplied with associated functions that are marked with #[inline]. This ensures that the compiler will (usually) optimize away all configuration checks.

Structs§

  • Config indicating compact representation with no capitalization and no prefixing.
  • Config indicating compact representation with capitalization but no prefixing.
  • Config indicating compact representation with capitalization and prefixing.
  • Config indicating compact representation with prefixing but no capitalization.
  • Config indicating a strict representation with no capiltaization and no prefixing.
  • Config indicating a strict representation with capitalization but no prefixing.
  • Config indicating a strict representation with capitalization and prefixing.
  • Config indicating a strict representation with prefixing but no capitalization.

Traits§

  • Trait for supplying configuration to SerHex. This trait takes no self parameters, as it is intended to be applied unit structs. All default implementation are set to false.