pub struct Entry<'a> {
pub date: &'a str,
pub time: &'a str,
pub raw: Option<&'a str>,
pub clean: &'a str,
}Expand description
One recorded turn, already cleaned by cleanup.
Fields§
§date: &'a str§time: &'a str§raw: Option<&'a str>§clean: &'a strAuto Trait Implementations§
impl<'a> Freeze for Entry<'a>
impl<'a> RefUnwindSafe for Entry<'a>
impl<'a> Send for Entry<'a>
impl<'a> Sync for Entry<'a>
impl<'a> Unpin for Entry<'a>
impl<'a> UnsafeUnpin for Entry<'a>
impl<'a> UnwindSafe for Entry<'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