pub struct MemoryInput<'a> {
pub title: &'a str,
pub meta: &'a TaskMetadata,
pub decisions: &'a [String],
pub constraints: &'a [String],
}Expand description
A task’s settled knowledge, pre-fetched by the caller (CLI).
Fields§
§title: &'a str§meta: &'a TaskMetadata§decisions: &'a [String]§constraints: &'a [String]Auto Trait Implementations§
impl<'a> Freeze for MemoryInput<'a>
impl<'a> RefUnwindSafe for MemoryInput<'a>
impl<'a> Send for MemoryInput<'a>
impl<'a> Sync for MemoryInput<'a>
impl<'a> Unpin for MemoryInput<'a>
impl<'a> UnsafeUnpin for MemoryInput<'a>
impl<'a> UnwindSafe for MemoryInput<'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