pub struct LoaderPlan {
pub output_path: String,
pub command_line: String,
}Expand description
The output path + command line a loader run would use (mirror of TS
createLoaderPlan, limited to the fields trace/support-bundle surface).
emit must be a valid target; paths are joined as given (callers pass
resolved roots).
Fields§
§output_path: StringAbsolute output path (workspace root joined with the target’s relative path).
command_line: StringFull python invocation that would run the loader script.
Auto Trait Implementations§
impl Freeze for LoaderPlan
impl RefUnwindSafe for LoaderPlan
impl Send for LoaderPlan
impl Sync for LoaderPlan
impl Unpin for LoaderPlan
impl UnsafeUnpin for LoaderPlan
impl UnwindSafe for LoaderPlan
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