pub struct DollarQuotedString {
    pub value: String,
    pub tag: Option<String>,
}Fields§
§value: String§tag: Option<String>Trait Implementations§
Source§impl Clone for DollarQuotedString
 
impl Clone for DollarQuotedString
Source§fn clone(&self) -> DollarQuotedString
 
fn clone(&self) -> DollarQuotedString
Returns a duplicate of the value. Read more
1.0.0 · 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 DollarQuotedString
 
impl Debug for DollarQuotedString
Source§impl Display for DollarQuotedString
 
impl Display for DollarQuotedString
Source§impl Hash for DollarQuotedString
 
impl Hash for DollarQuotedString
Source§impl Ord for DollarQuotedString
 
impl Ord for DollarQuotedString
Source§fn cmp(&self, other: &DollarQuotedString) -> Ordering
 
fn cmp(&self, other: &DollarQuotedString) -> Ordering
1.21.0 · 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 DollarQuotedString
 
impl PartialEq for DollarQuotedString
Source§impl PartialOrd for DollarQuotedString
 
impl PartialOrd for DollarQuotedString
impl Eq for DollarQuotedString
impl StructuralPartialEq for DollarQuotedString
Auto Trait Implementations§
impl Freeze for DollarQuotedString
impl RefUnwindSafe for DollarQuotedString
impl Send for DollarQuotedString
impl Sync for DollarQuotedString
impl Unpin for DollarQuotedString
impl UnwindSafe for DollarQuotedString
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
§impl<T> Instrument for T
 
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more