[][src]Struct smol_str::SmolStr

pub struct SmolStr(_);

A SmolStr is a string type that has the following properties:

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]

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]

type Target = str

The resulting type after dereferencing.

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]

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]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.