pub struct CommentDebug {
pub comment: String,
pub line: usize,
pub col: usize,
}
Expand description
Debug information for a Comment
Fields§
§comment: String
§line: usize
§col: usize
Trait Implementations§
Source§impl Clone for CommentDebug
impl Clone for CommentDebug
Source§fn clone(&self) -> CommentDebug
fn clone(&self) -> CommentDebug
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 Debug for CommentDebug
impl Debug for CommentDebug
Source§impl PartialEq for CommentDebug
impl PartialEq for CommentDebug
Source§impl Serialize for CommentDebug
impl Serialize for CommentDebug
impl StructuralPartialEq for CommentDebug
Auto Trait Implementations§
impl Freeze for CommentDebug
impl RefUnwindSafe for CommentDebug
impl Send for CommentDebug
impl Sync for CommentDebug
impl Unpin for CommentDebug
impl UnwindSafe for CommentDebug
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