pub struct Ignore {
pub dependency_name: Option<String>,
pub update_types: IndexSet<String>,
pub versions: IndexSet<String>,
}
Expand description
Dependency ignore settings for updates.
Fields§
§dependency_name: Option<String>
§update_types: IndexSet<String>
These are, inexplicably, not UpdateType
variants.
Instead, they’re strings like "version-update:semver-{major,minor,patch}"
.
versions: IndexSet<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Ignore
impl<'de> Deserialize<'de> for Ignore
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 Ignore
impl RefUnwindSafe for Ignore
impl Send for Ignore
impl Sync for Ignore
impl Unpin for Ignore
impl UnwindSafe for Ignore
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