pub struct ScratchpadEntry {
pub timestamp: i64,
pub entry_type: ScratchpadEntryType,
pub task_id: String,
pub parent_task_id: Option<String>,
pub entry_kind: Option<String>,
}Expand description
Entry for scratchpad formatting
Fields§
§timestamp: i64§entry_type: ScratchpadEntryType§task_id: String§parent_task_id: Option<String>§entry_kind: Option<String>Trait Implementations§
Source§impl Clone for ScratchpadEntry
impl Clone for ScratchpadEntry
Source§fn clone(&self) -> ScratchpadEntry
fn clone(&self) -> ScratchpadEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ScratchpadEntry
impl Debug for ScratchpadEntry
Source§impl<'de> Deserialize<'de> for ScratchpadEntry
impl<'de> Deserialize<'de> for ScratchpadEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ScratchpadEntry
impl RefUnwindSafe for ScratchpadEntry
impl Send for ScratchpadEntry
impl Sync for ScratchpadEntry
impl Unpin for ScratchpadEntry
impl UnsafeUnpin for ScratchpadEntry
impl UnwindSafe for ScratchpadEntry
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