pub struct NativeDependencyScope {
pub package_name: String,
pub package_version: String,
pub package_key: String,
pub root_path: PathBuf,
pub dependencies: HashMap<String, NativeDependencySpec>,
}Fields§
§package_name: String§package_version: String§package_key: String§root_path: PathBuf§dependencies: HashMap<String, NativeDependencySpec>Trait Implementations§
Source§impl Clone for NativeDependencyScope
impl Clone for NativeDependencyScope
Source§fn clone(&self) -> NativeDependencyScope
fn clone(&self) -> NativeDependencyScope
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 moreAuto Trait Implementations§
impl Freeze for NativeDependencyScope
impl RefUnwindSafe for NativeDependencyScope
impl Send for NativeDependencyScope
impl Sync for NativeDependencyScope
impl Unpin for NativeDependencyScope
impl UnsafeUnpin for NativeDependencyScope
impl UnwindSafe for NativeDependencyScope
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