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