pub struct QuotedString<'a>(pub Vec<Cow<'a, str>>);Tuple Fields§
§0: Vec<Cow<'a, str>>Implementations§
Trait Implementations§
Source§impl<'a> Clone for QuotedString<'a>
impl<'a> Clone for QuotedString<'a>
Source§fn clone(&self) -> QuotedString<'a>
fn clone(&self) -> QuotedString<'a>
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<'a> ContainsUtf8 for QuotedString<'a>
impl<'a> ContainsUtf8 for QuotedString<'a>
fn contains_utf8(&self) -> bool
Source§impl<'a> Debug for QuotedString<'a>
impl<'a> Debug for QuotedString<'a>
Source§impl<'a> Default for QuotedString<'a>
impl<'a> Default for QuotedString<'a>
Source§fn default() -> QuotedString<'a>
fn default() -> QuotedString<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> IntoBoundedStatic for QuotedString<'a>
impl<'a> IntoBoundedStatic for QuotedString<'a>
Source§type Static = QuotedString<'static>
type Static = QuotedString<'static>
The target type is bounded by the
'static lifetime.Source§fn into_static(self) -> Self::Static
fn into_static(self) -> Self::Static
Convert an owned
T into an owned T such that T: 'static.Source§impl<'a> PartialEq for QuotedString<'a>
impl<'a> PartialEq for QuotedString<'a>
Source§fn eq(&self, other: &QuotedString<'a>) -> bool
fn eq(&self, other: &QuotedString<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for QuotedString<'a>
Source§impl<'a> ToBoundedStatic for QuotedString<'a>
impl<'a> ToBoundedStatic for QuotedString<'a>
Auto Trait Implementations§
impl<'a> Freeze for QuotedString<'a>
impl<'a> RefUnwindSafe for QuotedString<'a>
impl<'a> Send for QuotedString<'a>
impl<'a> Sync for QuotedString<'a>
impl<'a> Unpin for QuotedString<'a>
impl<'a> UnsafeUnpin for QuotedString<'a>
impl<'a> UnwindSafe for QuotedString<'a>
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