pub enum DoubleQuotedStringPart {
String(String),
EscapedChar(DoubleQuotedStringEscapedChar),
BlankLines(usize),
RemovableNewline,
}Variants§
Trait Implementations§
Source§impl Clone for DoubleQuotedStringPart
impl Clone for DoubleQuotedStringPart
Source§fn clone(&self) -> DoubleQuotedStringPart
fn clone(&self) -> DoubleQuotedStringPart
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 DoubleQuotedStringPart
impl Debug for DoubleQuotedStringPart
Source§impl PartialEq for DoubleQuotedStringPart
impl PartialEq for DoubleQuotedStringPart
impl StructuralPartialEq for DoubleQuotedStringPart
Auto Trait Implementations§
impl Freeze for DoubleQuotedStringPart
impl RefUnwindSafe for DoubleQuotedStringPart
impl Send for DoubleQuotedStringPart
impl Sync for DoubleQuotedStringPart
impl Unpin for DoubleQuotedStringPart
impl UnsafeUnpin for DoubleQuotedStringPart
impl UnwindSafe for DoubleQuotedStringPart
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