pub struct ResolvedRustDependency {
pub name: String,
pub crate_dir: PathBuf,
pub features: Vec<String>,
pub default_features: bool,
pub externs_override: Option<PathBuf>,
pub cache_stub_dir: Option<PathBuf>,
pub version: Option<String>,
}Fields§
§name: String§crate_dir: PathBuf§features: Vec<String>§default_features: bool§externs_override: Option<PathBuf>§cache_stub_dir: Option<PathBuf>§version: Option<String>Trait Implementations§
Source§impl Clone for ResolvedRustDependency
impl Clone for ResolvedRustDependency
Source§fn clone(&self) -> ResolvedRustDependency
fn clone(&self) -> ResolvedRustDependency
Returns a duplicate of the value. Read more
1.0.0 · 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 ResolvedRustDependency
impl RefUnwindSafe for ResolvedRustDependency
impl Send for ResolvedRustDependency
impl Sync for ResolvedRustDependency
impl Unpin for ResolvedRustDependency
impl UnsafeUnpin for ResolvedRustDependency
impl UnwindSafe for ResolvedRustDependency
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