pub struct BlameLine<'a, T> {
pub line_number: usize,
pub content: &'a str,
pub revision_metadata: Rc<T>,
}
Fields§
§line_number: usize
§content: &'a str
§revision_metadata: Rc<T>
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> Freeze for BlameLine<'a, T>
impl<'a, T> RefUnwindSafe for BlameLine<'a, T>where
T: RefUnwindSafe,
impl<'a, T> !Send for BlameLine<'a, T>
impl<'a, T> !Sync for BlameLine<'a, T>
impl<'a, T> Unpin for BlameLine<'a, T>
impl<'a, T> UnwindSafe for BlameLine<'a, T>where
T: RefUnwindSafe,
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