pub struct Comment<'a> {
pub start: usize,
pub end: usize,
pub source: &'a str,
pub boundary: Boundary,
pub body: Body<'a>,
}
Fields§
§start: usize
§end: usize
§source: &'a str
§boundary: Boundary
§body: Body<'a>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Comment<'a>
impl<'a> RefUnwindSafe for Comment<'a>
impl<'a> Send for Comment<'a>
impl<'a> Sync for Comment<'a>
impl<'a> Unpin for Comment<'a>
impl<'a> UnwindSafe for Comment<'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