pub struct RunBoxOptions<'a> {
pub trust: TrustAnchors<'a>,
pub archive: Option<&'a Path>,
pub temporary_root: &'a Path,
pub run: RunOptions<'a>,
}Expand description
Where a one-shot run should stage the box.
Fields§
§trust: TrustAnchors<'a>The keys the caller accepts, from a trust file or already in hand.
archive: Option<&'a Path>The archive, when it is not beside its release document under its own hash.
temporary_root: &'a PathDirectory the temporary box is created inside. The caller owns it.
run: RunOptions<'a>How to run it.
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for RunBoxOptions<'a>
impl<'a> !Send for RunBoxOptions<'a>
impl<'a> !Sync for RunBoxOptions<'a>
impl<'a> !UnwindSafe for RunBoxOptions<'a>
impl<'a> Freeze for RunBoxOptions<'a>
impl<'a> Unpin for RunBoxOptions<'a>
impl<'a> UnsafeUnpin for RunBoxOptions<'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