[−][src]Struct smol_str::SmolStr
A SmolStr
is a string type that has the following properties:
size_of::<SmolStr>() == size_of::<String>()
Clone
isO(1)
- Strings are stack-allocated if they are:
- Up to 22 bytes long
- Longer than 22 bytes, but substrings of
WS
(see below). Such strings consist solely of consecutive newlines, followed by consecutive spaces
- If a string does not satisfy the aforementioned conditions, it is heap-allocated
Unlike String
, however, SmolStr
is immutable. The primary use case for
SmolStr
is a good enough default storage for tokens of typical programming
languages. Strings consisting of a series of newlines, followed by a series of
whitespace are a typical pattern in computer programs because of indentation.
Note that a specialized interner might be a better solution for some use cases.
Implementations
impl SmolStr
[src][−]
pub const fn new_inline_from_ascii(len: usize, bytes: &[u8]) -> SmolStr
[src]
👎 Deprecated:
Use new_inline
instead
pub const fn new_inline(text: &str) -> SmolStr
[src][−]
Constructs inline variant of SmolStr
.
Panics if text.len() > 22
.
pub fn new<T>(text: T) -> SmolStr where
T: AsRef<str>,
[src]
T: AsRef<str>,
pub fn as_str(&self) -> &str
[src]
pub fn to_string(&self) -> String
[src]
pub fn len(&self) -> usize
[src]
pub fn is_empty(&self) -> bool
[src]
pub fn is_heap_allocated(&self) -> bool
[src]
Trait Implementations
impl Borrow<str> for SmolStr
[src][+]
impl Clone for SmolStr
[src][+]
impl Debug for SmolStr
[src][+]
impl Default for SmolStr
[src][+]
impl Deref for SmolStr
[src][+]
impl Display for SmolStr
[src][+]
impl Eq for SmolStr
[src]
impl From<SmolStr> for String
[src][+]
impl<T> From<T> for SmolStr where
T: Into<String> + AsRef<str>,
[src][+]
T: Into<String> + AsRef<str>,
impl<'a> FromIterator<&'a String> for SmolStr
[src][+]
impl<'a> FromIterator<&'a str> for SmolStr
[src][+]
impl FromIterator<String> for SmolStr
[src][+]
impl FromIterator<char> for SmolStr
[src][+]
impl Hash for SmolStr
[src][+]
impl Ord for SmolStr
[src][+]
impl<'a> PartialEq<&'a String> for SmolStr
[src][+]
impl<'a> PartialEq<&'a str> for SmolStr
[src][+]
impl PartialEq<SmolStr> for SmolStr
[src][+]
impl PartialEq<SmolStr> for str
[src][+]
impl<'a> PartialEq<SmolStr> for &'a str
[src][+]
impl PartialEq<SmolStr> for String
[src][+]
impl<'a> PartialEq<SmolStr> for &'a String
[src][+]
impl PartialEq<String> for SmolStr
[src][+]
impl PartialEq<str> for SmolStr
[src][+]
impl PartialOrd<SmolStr> for SmolStr
[src][+]
Auto Trait Implementations
impl RefUnwindSafe for SmolStr
impl Send for SmolStr
impl Sync for SmolStr
impl Unpin for SmolStr
impl UnwindSafe for SmolStr
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T> ToString for T where
T: Display + ?Sized,
[src][+]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,