pub struct Target {
pub path: Utf8PathBuf,
pub tech: Option<&'static str>,
pub managers: Vec<ManagerFile>,
pub envrc_use_flake: bool,
pub already: Vec<Already>,
}Expand description
Everything the offline pass reads from the target.
Fields§
§path: Utf8PathBufThe target, canonical.
tech: Option<&'static str>rust, python, node, or bash, where a manifest says.
managers: Vec<ManagerFile>The managers present, in the closed order.
envrc_use_flake: boolWhether .envrc carries use flake.
already: Vec<Already>Where the dependency is already named.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Target
impl RefUnwindSafe for Target
impl Send for Target
impl Sync for Target
impl Unpin for Target
impl UnsafeUnpin for Target
impl UnwindSafe for Target
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