pub struct DependencyDef {
pub after: Vec<String>,
pub requires: Vec<String>,
pub wants: Vec<String>,
pub conflicts: Vec<String>,
}Expand description
Dependency definition section.
Fields§
§after: Vec<String>§requires: Vec<String>§wants: Vec<String>§conflicts: Vec<String>Trait Implementations§
Source§impl Clone for DependencyDef
impl Clone for DependencyDef
Source§fn clone(&self) -> DependencyDef
fn clone(&self) -> DependencyDef
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 DependencyDef
impl Debug for DependencyDef
Source§impl Default for DependencyDef
impl Default for DependencyDef
Source§fn default() -> DependencyDef
fn default() -> DependencyDef
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DependencyDef
impl<'de> Deserialize<'de> for DependencyDef
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
Source§impl PartialEq for DependencyDef
impl PartialEq for DependencyDef
Source§impl Serialize for DependencyDef
impl Serialize for DependencyDef
impl StructuralPartialEq for DependencyDef
Auto Trait Implementations§
impl Freeze for DependencyDef
impl RefUnwindSafe for DependencyDef
impl Send for DependencyDef
impl Sync for DependencyDef
impl Unpin for DependencyDef
impl UnwindSafe for DependencyDef
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