pub struct LastWord {
pub file: PathBuf,
pub line: usize,
pub kind: LastWordKind,
pub text: String,
pub age_days: Option<u64>,
}Expand description
A discovered “last word” comment in the codebase.
Fields§
§file: PathBuf§line: usize§kind: LastWordKind§text: String§age_days: Option<u64>Trait Implementations§
Auto Trait Implementations§
impl Freeze for LastWord
impl RefUnwindSafe for LastWord
impl Send for LastWord
impl Sync for LastWord
impl Unpin for LastWord
impl UnsafeUnpin for LastWord
impl UnwindSafe for LastWord
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