pub struct MissingDependencies { /* private fields */ }Expand description
All missing deps for type ty.
Implementations§
Source§impl MissingDependencies
impl MissingDependencies
Sourcepub fn ty(&self) -> &(TypeId, &'static str)
pub fn ty(&self) -> &(TypeId, &'static str)
Returns a reference to a tuple of the std::any::TypeId and the type name (as returned
from std::any::type_name, therefore, it’s “best effort”, and might not be correct or
reproducible).
This is the type that has missing dependencies.
Sourcepub fn missing_dependencies(&self) -> &[(TypeId, &'static str)]
pub fn missing_dependencies(&self) -> &[(TypeId, &'static str)]
Returns a reference to a slice of a description of all dependencies that are missing.
Trait Implementations§
Source§impl Clone for MissingDependencies
impl Clone for MissingDependencies
Source§fn clone(&self) -> MissingDependencies
fn clone(&self) -> MissingDependencies
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 MissingDependencies
impl Debug for MissingDependencies
Source§impl Hash for MissingDependencies
impl Hash for MissingDependencies
Source§impl PartialEq for MissingDependencies
impl PartialEq for MissingDependencies
impl Eq for MissingDependencies
impl StructuralPartialEq for MissingDependencies
Auto Trait Implementations§
impl Freeze for MissingDependencies
impl RefUnwindSafe for MissingDependencies
impl Send for MissingDependencies
impl Sync for MissingDependencies
impl Unpin for MissingDependencies
impl UnwindSafe for MissingDependencies
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.