Struct uncased::UncasedStr
source · pub struct UncasedStr(/* private fields */);
Expand description
A cost-free reference to an uncased (case-insensitive, case-preserving) ASCII string.
This is typically created from an &str
as follows:
use uncased::UncasedStr;
let ascii_ref: &UncasedStr = "Hello, world!".into();
Implementations§
source§impl UncasedStr
impl UncasedStr
sourcepub const fn new(string: &str) -> &UncasedStr
pub const fn new(string: &str) -> &UncasedStr
Cost-free conversion from an &str
reference to an UncasedStr
.
This is a const fn
on Rust 1.56+.
§Example
use uncased::UncasedStr;
let uncased_str = UncasedStr::new("Hello!");
assert_eq!(uncased_str, "hello!");
assert_eq!(uncased_str, "Hello!");
assert_eq!(uncased_str, "HeLLo!");
sourcepub fn as_str(&self) -> &str
pub fn as_str(&self) -> &str
Returns self
as an &str
.
§Example
use uncased::UncasedStr;
let uncased_str = UncasedStr::new("Hello!");
assert_eq!(uncased_str.as_str(), "Hello!");
assert_ne!(uncased_str.as_str(), "hELLo!");
sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Returns the length, in bytes, of self
.
§Example
use uncased::UncasedStr;
let uncased_str = UncasedStr::new("Hello!");
assert_eq!(uncased_str.len(), 6);
sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Returns true
if self
has a length of zero bytes.
§Examples
use uncased::UncasedStr;
let s = UncasedStr::new("");
assert!(s.is_empty());
let s = UncasedStr::new("not empty");
assert!(!s.is_empty());
sourcepub fn starts_with(&self, string: &str) -> bool
pub fn starts_with(&self, string: &str) -> bool
Returns true
if self
starts with any casing of the string string
;
otherwise, returns false
.
§Example
use uncased::UncasedStr;
let uncased_str = UncasedStr::new("MoOO");
assert!(uncased_str.starts_with("moo"));
assert!(uncased_str.starts_with("MOO"));
assert!(uncased_str.starts_with("MOOO"));
assert!(!uncased_str.starts_with("boo"));
let uncased_str = UncasedStr::new("Bèe");
assert!(!uncased_str.starts_with("Be"));
assert!(uncased_str.starts_with("Bè"));
assert!(uncased_str.starts_with("Bè"));
assert!(uncased_str.starts_with("bèe"));
assert!(uncased_str.starts_with("BèE"));
sourcepub fn into_uncased(self: Box<UncasedStr>) -> Uncased<'static>
Available on crate feature alloc
only.
pub fn into_uncased(self: Box<UncasedStr>) -> Uncased<'static>
alloc
only.Converts a Box<UncasedStr>
into an Uncased
without copying or
allocating.
§Example
use uncased::Uncased;
let uncased = Uncased::new("Hello!");
let boxed = uncased.clone().into_boxed_uncased();
assert_eq!(boxed.into_uncased(), uncased);
Trait Implementations§
source§impl AsRef<[u8]> for UncasedStr
impl AsRef<[u8]> for UncasedStr
source§impl AsRef<UncasedStr> for Uncased<'_>
impl AsRef<UncasedStr> for Uncased<'_>
source§fn as_ref(&self) -> &UncasedStr
fn as_ref(&self) -> &UncasedStr
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<str> for UncasedStr
impl AsRef<str> for UncasedStr
source§impl Borrow<UncasedStr> for Uncased<'_>
impl Borrow<UncasedStr> for Uncased<'_>
source§fn borrow(&self) -> &UncasedStr
fn borrow(&self) -> &UncasedStr
Immutably borrows from an owned value. Read more
source§impl Debug for UncasedStr
impl Debug for UncasedStr
source§impl Display for UncasedStr
impl Display for UncasedStr
source§impl<'s, 'c: 's> From<&'c UncasedStr> for Uncased<'s>
impl<'s, 'c: 's> From<&'c UncasedStr> for Uncased<'s>
source§fn from(string: &'c UncasedStr) -> Self
fn from(string: &'c UncasedStr) -> Self
Converts to this type from the input type.
source§impl<'a> From<&'a str> for &'a UncasedStr
impl<'a> From<&'a str> for &'a UncasedStr
source§fn from(string: &'a str) -> &'a UncasedStr
fn from(string: &'a str) -> &'a UncasedStr
Converts to this type from the input type.
source§impl Hash for UncasedStr
impl Hash for UncasedStr
source§impl<I: SliceIndex<str, Output = str>> Index<I> for UncasedStr
impl<I: SliceIndex<str, Output = str>> Index<I> for UncasedStr
source§impl Ord for UncasedStr
impl Ord for UncasedStr
source§impl PartialEq<&UncasedStr> for str
impl PartialEq<&UncasedStr> for str
source§impl PartialEq<&str> for UncasedStr
impl PartialEq<&str> for UncasedStr
source§impl PartialEq<String> for UncasedStr
impl PartialEq<String> for UncasedStr
source§impl PartialEq<UncasedStr> for &str
impl PartialEq<UncasedStr> for &str
source§impl PartialEq<UncasedStr> for String
impl PartialEq<UncasedStr> for String
source§impl PartialEq<UncasedStr> for str
impl PartialEq<UncasedStr> for str
source§impl PartialEq<str> for &UncasedStr
impl PartialEq<str> for &UncasedStr
source§impl PartialEq<str> for UncasedStr
impl PartialEq<str> for UncasedStr
source§impl PartialEq for UncasedStr
impl PartialEq for UncasedStr
source§impl PartialOrd<String> for UncasedStr
impl PartialOrd<String> for UncasedStr
source§impl PartialOrd<UncasedStr> for String
impl PartialOrd<UncasedStr> for String
source§impl PartialOrd<UncasedStr> for str
impl PartialOrd<UncasedStr> for str
source§impl PartialOrd<str> for UncasedStr
impl PartialOrd<str> for UncasedStr
source§impl PartialOrd for UncasedStr
impl PartialOrd for UncasedStr
impl Eq for UncasedStr
Auto Trait Implementations§
impl Freeze for UncasedStr
impl RefUnwindSafe for UncasedStr
impl Send for UncasedStr
impl !Sized for UncasedStr
impl Sync for UncasedStr
impl Unpin for UncasedStr
impl UnwindSafe for UncasedStr
Blanket Implementations§
source§impl<T> AsUncased for T
impl<T> AsUncased for T
source§fn as_uncased(&self) -> &UncasedStr
fn as_uncased(&self) -> &UncasedStr
Convert
self
to an UncasedStr
.