pub struct TargetDependencies {
pub dependencies: BTreeMap<String, Dependency>,
pub dev_dependencies: BTreeMap<String, Dependency>,
}Fields§
§dependencies: BTreeMap<String, Dependency>§dev_dependencies: BTreeMap<String, Dependency>Trait Implementations§
Source§impl Clone for TargetDependencies
impl Clone for TargetDependencies
Source§fn clone(&self) -> TargetDependencies
fn clone(&self) -> TargetDependencies
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 moreSource§impl Debug for TargetDependencies
impl Debug for TargetDependencies
Source§impl<'de> Deserialize<'de> for TargetDependencies
impl<'de> Deserialize<'de> for TargetDependencies
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TargetDependencies
impl RefUnwindSafe for TargetDependencies
impl Send for TargetDependencies
impl Sync for TargetDependencies
impl Unpin for TargetDependencies
impl UnwindSafe for TargetDependencies
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