pub struct RuntimeProfile {
pub source_paths: Vec<PathBuf>,
pub test_paths: Vec<PathBuf>,
pub extension_paths: Vec<PathBuf>,
pub native_source_paths: Vec<PathBuf>,
pub target_path: Option<PathBuf>,
pub hara_dependencies: BTreeMap<String, String>,
pub maven_dependencies: BTreeMap<String, String>,
pub npm_dependencies: BTreeMap<String, NpmWasmDependency>,
pub native_imports: BTreeMap<String, WasmNativeImport>,
}Fields§
§source_paths: Vec<PathBuf>§test_paths: Vec<PathBuf>§extension_paths: Vec<PathBuf>§native_source_paths: Vec<PathBuf>§target_path: Option<PathBuf>§hara_dependencies: BTreeMap<String, String>§maven_dependencies: BTreeMap<String, String>§npm_dependencies: BTreeMap<String, NpmWasmDependency>§native_imports: BTreeMap<String, WasmNativeImport>Trait Implementations§
Source§impl Clone for RuntimeProfile
impl Clone for RuntimeProfile
Source§fn clone(&self) -> RuntimeProfile
fn clone(&self) -> RuntimeProfile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RuntimeProfile
impl Debug for RuntimeProfile
Source§impl Default for RuntimeProfile
impl Default for RuntimeProfile
Source§fn default() -> RuntimeProfile
fn default() -> RuntimeProfile
Returns the “default value” for a type. Read more
Source§impl PartialEq for RuntimeProfile
impl PartialEq for RuntimeProfile
impl StructuralPartialEq for RuntimeProfile
Auto Trait Implementations§
impl Freeze for RuntimeProfile
impl RefUnwindSafe for RuntimeProfile
impl Send for RuntimeProfile
impl Sync for RuntimeProfile
impl Unpin for RuntimeProfile
impl UnsafeUnpin for RuntimeProfile
impl UnwindSafe for RuntimeProfile
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
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