Struct stack_string::StackString [−][src]
pub struct StackString(_);
Implementations
impl StackString
[src]
impl StackString
[src]Trait Implementations
impl Borrow<str> for StackString
[src]
impl Borrow<str> for StackString
[src]impl Clone for StackString
[src]
impl Clone for StackString
[src]fn clone(&self) -> StackString
[src]
fn clone(&self) -> StackString
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for StackString
[src]
impl Debug for StackString
[src]impl Default for StackString
[src]
impl Default for StackString
[src]fn default() -> StackString
[src]
fn default() -> StackString
[src]Returns the “default value” for a type. Read more
impl Deref for StackString
[src]
impl Deref for StackString
[src]type Target = SmartString
type Target = SmartString
The resulting type after dereferencing.
impl DerefMut for StackString
[src]
impl DerefMut for StackString
[src]impl<'de> Deserialize<'de> for StackString
[src]
impl<'de> Deserialize<'de> for StackString
[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
impl Display for StackString
[src]
impl Display for StackString
[src]impl From<&'_ String> for StackString
[src]
impl From<&'_ String> for StackString
[src]impl From<SmartString<LazyCompact>> for StackString
[src]
impl From<SmartString<LazyCompact>> for StackString
[src]fn from(original: SmartString) -> StackString
[src]
fn from(original: SmartString) -> StackString
[src]Performs the conversion.
impl From<StackString> for SmartString
[src]
impl From<StackString> for SmartString
[src]fn from(original: StackString) -> Self
[src]
fn from(original: StackString) -> Self
[src]Performs the conversion.
impl FromIterator<char> for StackString
[src]
impl FromIterator<char> for StackString
[src]fn from_iter<I: IntoIterator<Item = char>>(iter: I) -> Self
[src]
fn from_iter<I: IntoIterator<Item = char>>(iter: I) -> Self
[src]Creates a value from an iterator. Read more
impl FromStr for StackString
[src]
impl FromStr for StackString
[src]impl Hash for StackString
[src]
impl Hash for StackString
[src]impl<__IdxT> Index<__IdxT> for StackString where
SmartString: Index<__IdxT>,
[src]
impl<__IdxT> Index<__IdxT> for StackString where
SmartString: Index<__IdxT>,
[src]impl<__IdxT> IndexMut<__IdxT> for StackString where
SmartString: IndexMut<__IdxT>,
[src]
impl<__IdxT> IndexMut<__IdxT> for StackString where
SmartString: IndexMut<__IdxT>,
[src]impl Ord for StackString
[src]
impl Ord for StackString
[src]impl<'a> PartialEq<&'a str> for StackString
[src]
impl<'a> PartialEq<&'a str> for StackString
[src]impl<'a> PartialEq<Cow<'a, str>> for StackString
[src]
impl<'a> PartialEq<Cow<'a, str>> for StackString
[src]impl PartialEq<StackString> for StackString
[src]
impl PartialEq<StackString> for StackString
[src]fn eq(&self, other: &StackString) -> bool
[src]
fn eq(&self, other: &StackString) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &StackString) -> bool
[src]
fn ne(&self, other: &StackString) -> bool
[src]This method tests for !=
.
impl<'a> PartialEq<String> for StackString
[src]
impl<'a> PartialEq<String> for StackString
[src]impl<'a> PartialEq<str> for StackString
[src]
impl<'a> PartialEq<str> for StackString
[src]impl PartialOrd<StackString> for StackString
[src]
impl PartialOrd<StackString> for StackString
[src]fn partial_cmp(&self, other: &StackString) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &StackString) -> Option<Ordering>
[src]This method returns an ordering between self
and other
values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Serialize for StackString
[src]
impl Serialize for StackString
[src]impl Eq for StackString
[src]
impl StructuralEq for StackString
[src]
impl StructuralPartialEq for StackString
[src]
Auto Trait Implementations
impl RefUnwindSafe for StackString
impl Send for StackString
impl Sync for StackString
impl Unpin for StackString
impl UnwindSafe for StackString
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,