pub struct Requires {
pub modules: Vec<String>,
pub platforms: Vec<String>,
pub programs: Vec<String>,
pub libraries: Vec<String>,
pub models: BTreeMap<String, RequiredModel>,
pub datasets: Vec<String>,
pub ontologies: Vec<String>,
pub classes: Vec<String>,
pub datatypes: Vec<String>,
}Fields§
§modules: Vec<String>The set of modules that this module depends on.
platforms: Vec<String>The set of platforms that this module depends on.
programs: Vec<String>The set of programs that this module depends on.
libraries: Vec<String>The set of libraries that this module depends on.
models: BTreeMap<String, RequiredModel>The set of models that this module depends on.
datasets: Vec<String>The set of datasets that this module depends on.
ontologies: Vec<String>The set of ontologies that this module depends on.
classes: Vec<String>The set of classes that this module depends on.
datatypes: Vec<String>The set of datatypes that this module depends on.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Requires
impl<'de> Deserialize<'de> for Requires
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
impl Eq for Requires
impl StructuralPartialEq for Requires
Auto Trait Implementations§
impl Freeze for Requires
impl RefUnwindSafe for Requires
impl Send for Requires
impl Sync for Requires
impl Unpin for Requires
impl UnwindSafe for Requires
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.