pub struct Request<'a> {
pub store: &'a Store,
pub target: &'a Utf8Path,
pub stored: &'a Plan,
pub recomputed: &'a Plan,
pub bundle: &'a dyn ReleaseBundle,
pub now: String,
}Expand description
What an apply is given.
Fields§
§store: &'a StoreWhere the plan lives.
target: &'a Utf8PathThe repository the plan is for.
stored: &'a PlanThe plan that was approved.
recomputed: &'a PlanThe same plan, computed again from the same inputs, just now.
bundle: &'a dyn ReleaseBundleThe release the plan froze, for the verification postcondition.
now: StringThe clock, as an input.
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for Request<'a>
impl<'a> !UnwindSafe for Request<'a>
impl<'a> Freeze for Request<'a>
impl<'a> Send for Request<'a>
impl<'a> Sync for Request<'a>
impl<'a> Unpin for Request<'a>
impl<'a> UnsafeUnpin for Request<'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