Skip to main content

Project

Struct Project 

Source
pub struct Project {
Show 33 fields pub root: PathBuf, pub manifest_path: PathBuf, pub id: String, pub version: Version, pub release_tag: String, pub source_paths: Vec<PathBuf>, pub test_paths: Vec<PathBuf>, pub extension_paths: Vec<PathBuf>, pub shared_source_paths: Vec<PathBuf>, pub shared_test_paths: Vec<PathBuf>, pub shared_extension_paths: Vec<PathBuf>, pub runtime_profiles: BTreeMap<String, RuntimeProfile>, pub active_runtime: String, pub native_source_paths: Vec<PathBuf>, pub runtime_target_path: Option<PathBuf>, pub maven_dependencies: BTreeMap<String, String>, pub npm_dependencies: BTreeMap<String, NpmWasmDependency>, pub native_imports: BTreeMap<String, WasmNativeImport>, pub capabilities: Vec<String>, pub artifact_paths: Vec<PathBuf>, pub archive_root: Option<PathBuf>, pub package_workspace: bool, pub package_name: Option<String>, pub package_profile: Option<PathBuf>, pub source_files: Option<Vec<PathBuf>>, pub main: Option<String>, pub default_profile: Option<String>, pub profiles: BTreeMap<String, ProjectProfile>, pub dependencies: BTreeMap<String, String>, pub shared_dependencies: BTreeMap<String, String>, pub extensions: BTreeMap<String, Form>, pub aliases: BTreeMap<String, Vec<String>>, pub recipe: Option<PathBuf>,
}

Fields§

§root: PathBuf§manifest_path: PathBuf§id: String§version: Version§release_tag: String

Signed source tag for publication. It defaults to the exact project version so source packages do not need a separate v convention.

§source_paths: Vec<PathBuf>

Effective native-Rust paths (shared paths followed by :rust additions).

§test_paths: Vec<PathBuf>§extension_paths: Vec<PathBuf>§shared_source_paths: Vec<PathBuf>§shared_test_paths: Vec<PathBuf>§shared_extension_paths: Vec<PathBuf>§runtime_profiles: BTreeMap<String, RuntimeProfile>§active_runtime: String§native_source_paths: Vec<PathBuf>§runtime_target_path: Option<PathBuf>§maven_dependencies: BTreeMap<String, String>§npm_dependencies: BTreeMap<String, NpmWasmDependency>§native_imports: BTreeMap<String, WasmNativeImport>§capabilities: Vec<String>§artifact_paths: Vec<PathBuf>§archive_root: Option<PathBuf>§package_workspace: bool

Whether the intentionally portable workspace declaration is a package resource. This never includes a live Studio workspace or cache.

§package_name: Option<String>

Semantic package coordinate selected from the project’s package profile. This is independent from the namespace coordinates it owns.

§package_profile: Option<PathBuf>

Optional Foundation-compatible package profile used to select source namespaces while building a package archive.

§source_files: Option<Vec<PathBuf>>

Optional explicit HAL files to include when building a package.

This keeps package projects rooted next to canonical sources without recursively archiving runtime-specific siblings.

§main: Option<String>§default_profile: Option<String>§profiles: BTreeMap<String, ProjectProfile>§dependencies: BTreeMap<String, String>

Effective native-Rust Hara dependencies.

§shared_dependencies: BTreeMap<String, String>§extensions: BTreeMap<String, Form>§aliases: BTreeMap<String, Vec<String>>

Project-local command aliases. Values are argv prefixes, never shell expressions; callers append their own arguments after expansion.

§recipe: Option<PathBuf>

Implementations§

Source§

impl Project

Source

pub fn resolve_runtime_profile( &self, runtime: &str, ) -> Result<ResolvedRuntimeProfile, String>

Resolves the shared project declaration with one host runtime overlay.

Source

pub fn resolve_profile( &self, requested: Option<&str>, ) -> Result<Option<ResolvedProfile>, String>

Resolves a named runnable target without assigning any meaning to its language or options. Language hosts such as Hoplite own that policy.

Trait Implementations§

Source§

impl Clone for Project

Source§

fn clone(&self) -> Project

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Project

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for Project

Source§

fn eq(&self, other: &Project) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Project

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<S, T> Upcast<T> for S
where T: UpcastFrom<S> + ?Sized, S: ?Sized,

Source§

fn upcast(&self) -> &T
where Self: ErasableGeneric, T: Sized + ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider ref type within the Wasm bindgen generics type system. Read more
Source§

fn upcast_into(self) -> T
where Self: Sized + ErasableGeneric, T: Sized + ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider type within the Wasm bindgen generics type system. Read more