pub trait AsUncased {
    // Required method
    fn as_uncased(&self) -> &UncasedStr;
}
Expand description

Helper trait to convert string-like references to &UncasedStr.

Example

use uncased::AsUncased;

let string = "Hello, world!".as_uncased();
assert_eq!(string, "hello, world!");
assert_eq!(string, "HELLO, world!");
assert_eq!(string, "HELLO, WORLD!");

Required Methods§

source

fn as_uncased(&self) -> &UncasedStr

Convert self to an UncasedStr.

Implementors§

source§

impl<T> AsUncased for Twhere T: AsRef<str> + ?Sized,