Struct jsonc_parser::ast::CommentLine
source · pub struct CommentLine<'a> {
pub range: Range,
pub text: &'a str,
}Expand description
Represents a comment line (ex. // my comment).
Fields§
§range: Range§text: &'a strTrait Implementations§
source§impl<'a> Clone for CommentLine<'a>
impl<'a> Clone for CommentLine<'a>
source§fn clone(&self) -> CommentLine<'a>
fn clone(&self) -> CommentLine<'a>
Returns a copy 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 CommentLine<'a>
impl<'a> Debug for CommentLine<'a>
source§impl<'a> PartialEq for CommentLine<'a>
impl<'a> PartialEq for CommentLine<'a>
source§fn eq(&self, other: &CommentLine<'a>) -> bool
fn eq(&self, other: &CommentLine<'a>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<'a> Ranged for CommentLine<'a>
impl<'a> Ranged for CommentLine<'a>
impl<'a> StructuralPartialEq for CommentLine<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for CommentLine<'a>
impl<'a> Send for CommentLine<'a>
impl<'a> Sync for CommentLine<'a>
impl<'a> Unpin for CommentLine<'a>
impl<'a> UnwindSafe for CommentLine<'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