Struct stack_string::StackString[][src]

pub struct StackString(_);

Implementations

impl StackString[src]

pub fn new() -> Self[src]

pub fn as_str(&self) -> &str[src]

pub fn split_off(&mut self, index: usize) -> Self[src]

pub fn from_utf8(vec: Vec<u8>) -> Result<Self, FromUtf8Error>[src]

Trait Implementations

impl AsRef<[u8]> for StackString[src]

impl AsRef<Path> for StackString[src]

impl AsRef<str> for StackString[src]

impl Borrow<str> for StackString[src]

impl Clone for StackString[src]

impl Debug for StackString[src]

impl Default for StackString[src]

impl Deref for StackString[src]

type Target = SmartString

The resulting type after dereferencing.

impl DerefMut for StackString[src]

impl<'de> Deserialize<'de> for StackString[src]

impl Display for StackString[src]

impl Eq for StackString[src]

impl From<&'_ String> for StackString[src]

impl From<&'_ str> for StackString[src]

impl From<SmartString<LazyCompact>> for StackString[src]

impl From<StackString> for SmartString[src]

impl From<String> for StackString[src]

impl FromIterator<char> for StackString[src]

impl FromStr for StackString[src]

type Err = Infallible

The associated error which can be returned from parsing.

impl Hash for StackString[src]

impl<__IdxT> Index<__IdxT> for StackString where
    SmartString: Index<__IdxT>, 
[src]

type Output = <SmartString as Index<__IdxT>>::Output

The returned type after indexing.

impl<__IdxT> IndexMut<__IdxT> for StackString where
    SmartString: IndexMut<__IdxT>, 
[src]

impl Ord for StackString[src]

impl<'a> PartialEq<&'a str> for StackString[src]

impl<'a> PartialEq<Cow<'a, str>> for StackString[src]

impl PartialEq<StackString> for StackString[src]

impl<'a> PartialEq<String> for StackString[src]

impl<'a> PartialEq<str> for StackString[src]

impl PartialOrd<StackString> for StackString[src]

impl Serialize for StackString[src]

impl StructuralEq for StackString[src]

impl StructuralPartialEq for StackString[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.