pub struct DoubleQuotes(pub Span);
Expand description
The delimiters "
"
.
Tuple Fields§
§0: Span
Trait Implementations§
Source§impl Clone for DoubleQuotes
impl Clone for DoubleQuotes
Source§fn clone(&self) -> DoubleQuotes
fn clone(&self) -> DoubleQuotes
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 DoubleQuotes
impl Debug for DoubleQuotes
Source§impl Delimiters for DoubleQuotes
impl Delimiters for DoubleQuotes
Source§const CAN_NEST: bool = false
const CAN_NEST: bool = false
Whether groups delimited by this pair can nest. Typically, this will be
false if the opening and closing delimiters are the same, and true
otherwise.
Source§type Start = DoubleQuote
type Start = DoubleQuote
The opening delimiter, e.g.
(
.Source§type End = DoubleQuote
type End = DoubleQuote
The closing delimiter, e.g.
)
.Source§impl From<Span> for DoubleQuotes
impl From<Span> for DoubleQuotes
Source§impl Hash for DoubleQuotes
impl Hash for DoubleQuotes
Source§impl Ord for DoubleQuotes
impl Ord for DoubleQuotes
Source§impl PartialEq for DoubleQuotes
impl PartialEq for DoubleQuotes
Source§impl PartialOrd for DoubleQuotes
impl PartialOrd for DoubleQuotes
impl Eq for DoubleQuotes
Auto Trait Implementations§
impl Freeze for DoubleQuotes
impl RefUnwindSafe for DoubleQuotes
impl Send for DoubleQuotes
impl Sync for DoubleQuotes
impl Unpin for DoubleQuotes
impl UnwindSafe for DoubleQuotes
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