pub struct DependencyCompatibility {
pub dependency_name: String,
pub required_version: String,
pub compatible_versions: Vec<String>,
pub incompatible_versions: Vec<String>,
pub notes: Option<String>,
}Expand description
Dependency compatibility check
Fields§
§dependency_name: String§required_version: String§compatible_versions: Vec<String>§incompatible_versions: Vec<String>§notes: Option<String>Trait Implementations§
Source§impl Clone for DependencyCompatibility
impl Clone for DependencyCompatibility
Source§fn clone(&self) -> DependencyCompatibility
fn clone(&self) -> DependencyCompatibility
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 DependencyCompatibility
impl Debug for DependencyCompatibility
Source§impl<'de> Deserialize<'de> for DependencyCompatibility
impl<'de> Deserialize<'de> for DependencyCompatibility
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 DependencyCompatibility
impl RefUnwindSafe for DependencyCompatibility
impl Send for DependencyCompatibility
impl Sync for DependencyCompatibility
impl Unpin for DependencyCompatibility
impl UnsafeUnpin for DependencyCompatibility
impl UnwindSafe for DependencyCompatibility
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