pub struct CommentedLine {
pub text: String,
pub row: usize,
pub comments: Comments,
}Fields§
§text: StringThe main text without comments.
row: usize§comments: CommentsImplementations§
Source§impl CommentedLine
impl CommentedLine
Auto Trait Implementations§
impl Freeze for CommentedLine
impl RefUnwindSafe for CommentedLine
impl Send for CommentedLine
impl Sync for CommentedLine
impl Unpin for CommentedLine
impl UnsafeUnpin for CommentedLine
impl UnwindSafe for CommentedLine
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