pub struct QuotedString<'a>(pub &'a str, pub Metadata<'a>);Tuple Fields§
§0: &'a str§1: Metadata<'a>Implementations§
Source§impl<'a: 'b, 'b> QuotedString<'a>
impl<'a: 'b, 'b> QuotedString<'a>
Sourcepub fn iter(&'b self) -> NodeIter<'a, 'b> ⓘ
pub fn iter(&'b self) -> NodeIter<'a, 'b> ⓘ
Iterate across the QuotedString and its children
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 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for QuotedString<'a>
impl<'a> Debug for QuotedString<'a>
Source§impl<'a: 'b, 'b> From<&'b QuotedString<'a>> for Node<'a, 'b>
impl<'a: 'b, 'b> From<&'b QuotedString<'a>> for Node<'a, 'b>
Source§fn from(value: &'b QuotedString<'a>) -> Self
fn from(value: &'b QuotedString<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a: 'b, 'b> IntoIterator for &'b QuotedString<'a>
impl<'a: 'b, 'b> IntoIterator for &'b QuotedString<'a>
Source§impl<'a: 'b, 'b> Nodes<'a, 'b> for QuotedString<'a>
impl<'a: 'b, 'b> Nodes<'a, 'b> for QuotedString<'a>
Source§impl<'a> PartialEq for QuotedString<'a>
impl<'a> PartialEq for QuotedString<'a>
impl<'a> StructuralPartialEq 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