pub struct LongString(/* private fields */);Expand description
A String
Implementations§
Source§impl<'a> LongString
impl<'a> LongString
Sourcepub fn split_whitespace(&'a self) -> SplitWhitespace<'a>
pub fn split_whitespace(&'a self) -> SplitWhitespace<'a>
Splits a string slice by whitespace.
Trait Implementations§
Source§impl Borrow<str> for LongString
impl Borrow<str> for LongString
Source§impl Clone for LongString
impl Clone for LongString
Source§fn clone(&self) -> LongString
fn clone(&self) -> LongString
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LongString
impl Debug for LongString
Source§impl Default for LongString
impl Default for LongString
Source§fn default() -> LongString
fn default() -> LongString
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LongString
impl<'de> Deserialize<'de> for LongString
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LongString, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LongString, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for LongString
impl Display for LongString
Source§impl From<&str> for LongString
impl From<&str> for LongString
Source§fn from(s: &str) -> LongString
fn from(s: &str) -> LongString
Converts to this type from the input type.
Source§impl From<LongString> for AMQPValue
impl From<LongString> for AMQPValue
Source§fn from(v: LongString) -> AMQPValue
fn from(v: LongString) -> AMQPValue
Converts to this type from the input type.
Source§impl From<String> for LongString
impl From<String> for LongString
Source§fn from(s: String) -> LongString
fn from(s: String) -> LongString
Converts to this type from the input type.
Source§impl Hash for LongString
impl Hash for LongString
Source§impl Ord for LongString
impl Ord for LongString
Source§fn cmp(&self, other: &LongString) -> Ordering
fn cmp(&self, other: &LongString) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for LongString
impl PartialEq for LongString
Source§fn eq(&self, other: &LongString) -> bool
fn eq(&self, other: &LongString) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for LongString
impl PartialOrd for LongString
Source§impl Serialize for LongString
impl Serialize for LongString
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for LongString
impl StructuralPartialEq for LongString
Auto Trait Implementations§
impl Freeze for LongString
impl RefUnwindSafe for LongString
impl Send for LongString
impl Sync for LongString
impl Unpin for LongString
impl UnsafeUnpin for LongString
impl UnwindSafe for LongString
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more