pub enum Whitespace {
Space,
Newline,
Tab,
SingleLineComment {
comment: String,
prefix: String,
},
MultiLineComment(String),
}Expand description
Represents whitespace in the input: spaces, newlines, tabs and comments.
Variants§
Space
A single space character.
Newline
A newline character.
Tab
A tab character.
SingleLineComment
A single-line comment (e.g. -- comment or # comment).
The comment field contains the text, and prefix contains the comment prefix.
Fields
MultiLineComment(String)
A multi-line comment (without the /* ... */ delimiters).
Trait Implementations§
Source§impl Clone for Whitespace
impl Clone for Whitespace
Source§fn clone(&self) -> Whitespace
fn clone(&self) -> Whitespace
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 Whitespace
impl Debug for Whitespace
Source§impl Display for Whitespace
impl Display for Whitespace
Source§impl Hash for Whitespace
impl Hash for Whitespace
Source§impl Ord for Whitespace
impl Ord for Whitespace
Source§fn cmp(&self, other: &Whitespace) -> Ordering
fn cmp(&self, other: &Whitespace) -> 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 Whitespace
impl PartialEq for Whitespace
Source§impl PartialOrd for Whitespace
impl PartialOrd for Whitespace
Source§impl Visit for Whitespace
impl Visit for Whitespace
Source§impl VisitMut for Whitespace
impl VisitMut for Whitespace
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Eq for Whitespace
impl StructuralPartialEq for Whitespace
Auto Trait Implementations§
impl Freeze for Whitespace
impl RefUnwindSafe for Whitespace
impl Send for Whitespace
impl Sync for Whitespace
impl Unpin for Whitespace
impl UnsafeUnpin for Whitespace
impl UnwindSafe for Whitespace
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