pub struct Dependabot {
pub version: u64,
pub enable_beta_ecosystems: bool,
pub registries: IndexMap<String, Registry>,
pub updates: Vec<Update>,
}
Expand description
A dependabot.yml
configuration file.
Fields§
§version: u64
Invariant: 2
enable_beta_ecosystems: bool
§registries: IndexMap<String, Registry>
§updates: Vec<Update>
Trait Implementations§
Source§impl Debug for Dependabot
impl Debug for Dependabot
Source§impl<'de> Deserialize<'de> for Dependabot
impl<'de> Deserialize<'de> for Dependabot
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 Dependabot
impl RefUnwindSafe for Dependabot
impl Send for Dependabot
impl Sync for Dependabot
impl Unpin for Dependabot
impl UnwindSafe for Dependabot
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