pub struct UnmetDependency {
pub plugin_name: String,
pub required_by: String,
pub version_requirement: String,
}Expand description
Represents an unmet dependency
Fields§
§plugin_name: String§required_by: String§version_requirement: StringTrait Implementations§
Source§impl Clone for UnmetDependency
impl Clone for UnmetDependency
Source§fn clone(&self) -> UnmetDependency
fn clone(&self) -> UnmetDependency
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 UnmetDependency
impl RefUnwindSafe for UnmetDependency
impl Send for UnmetDependency
impl Sync for UnmetDependency
impl Unpin for UnmetDependency
impl UnsafeUnpin for UnmetDependency
impl UnwindSafe for UnmetDependency
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