pub struct JobNotepad {
pub harness: String,
pub id: String,
pub entries: Vec<JobNotepadEntry>,
pub ran: Option<String>,
}Expand description
What a notepad call answered.
Fields§
§harness: StringHarness that owns the job.
id: StringThe job’s id.
entries: Vec<JobNotepadEntry>The entries read (one for a keyed read or a set; none for a delete
or a key the job does not have).
ran: Option<String>The harness command that ran, for set and delete.
Trait Implementations§
Source§impl Clone for JobNotepad
impl Clone for JobNotepad
Source§impl Debug for JobNotepad
impl Debug for JobNotepad
Source§impl<'de> Deserialize<'de> for JobNotepad
impl<'de> Deserialize<'de> for JobNotepad
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
Source§impl PartialEq for JobNotepad
impl PartialEq for JobNotepad
Source§impl Serialize for JobNotepad
impl Serialize for JobNotepad
impl StructuralPartialEq for JobNotepad
Auto Trait Implementations§
impl Freeze for JobNotepad
impl RefUnwindSafe for JobNotepad
impl Send for JobNotepad
impl Sync for JobNotepad
impl Unpin for JobNotepad
impl UnsafeUnpin for JobNotepad
impl UnwindSafe for JobNotepad
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