Trait irx_config::Case

source ·
pub trait Case {
    // Provided method
    fn is_case_sensitive(&self) -> bool { ... }
}
Expand description

A data structure that has case-sensitive or case-insensitive keys.

Provided Methods§

source

fn is_case_sensitive(&self) -> bool

Return true if case sensitive, otherwise return false.

Implementations on Foreign Types§

source§

impl Case for Box<dyn Parse>

Implementors§

source§

impl Case for irx_config::parsers::cmd::Parser

source§

impl Case for irx_config::parsers::env::Parser

source§

impl Case for irx_config::parsers::json5::LoadJson

source§

impl Case for irx_config::parsers::json::LoadJson

source§

impl Case for LoadToml

source§

impl Case for LoadYaml

source§

impl<L: Load + Default> Case for FileParser<L>