dependabot-config 0.1.0

Structured access to the Dependabot configuration.
Documentation
// This file is @generated by dependabot-config-internal-codegen.
// It is not intended for manual editing.

use std::str::FromStr;

use crate::*;
impl FromStr for Dependabot {
    type Err = Error;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        serde_yaml::from_str(s).map_err(Error::new)
    }
}
impl FromStr for v2::Dependabot {
    type Err = Error;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        serde_yaml::from_str(s).map_err(Error::new)
    }
}
impl FromStr for v2::Update {
    type Err = Error;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        serde_yaml::from_str(s).map_err(Error::new)
    }
}
impl FromStr for v2::PackageEcosystem {
    type Err = Error;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        serde_yaml::from_str(s).map_err(Error::new)
    }
}
impl FromStr for v2::Schedule {
    type Err = Error;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        serde_yaml::from_str(s).map_err(Error::new)
    }
}
impl FromStr for v2::Interval {
    type Err = Error;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        serde_yaml::from_str(s).map_err(Error::new)
    }
}
impl FromStr for v2::Day {
    type Err = Error;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        serde_yaml::from_str(s).map_err(Error::new)
    }
}
impl FromStr for v2::Allow {
    type Err = Error;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        serde_yaml::from_str(s).map_err(Error::new)
    }
}
impl FromStr for v2::DependencyType {
    type Err = Error;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        serde_yaml::from_str(s).map_err(Error::new)
    }
}
impl FromStr for v2::CommitMessage {
    type Err = Error;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        serde_yaml::from_str(s).map_err(Error::new)
    }
}
impl FromStr for v2::Ignore {
    type Err = Error;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        serde_yaml::from_str(s).map_err(Error::new)
    }
}
impl FromStr for v2::PullRequestBranchName {
    type Err = Error;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        serde_yaml::from_str(s).map_err(Error::new)
    }
}
impl FromStr for v2::Separator {
    type Err = Error;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        serde_yaml::from_str(s).map_err(Error::new)
    }
}
impl FromStr for v2::RebaseStrategy {
    type Err = Error;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        serde_yaml::from_str(s).map_err(Error::new)
    }
}
impl FromStr for v2::VersioningStrategy {
    type Err = Error;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        serde_yaml::from_str(s).map_err(Error::new)
    }
}
impl FromStr for v2::Registry {
    type Err = Error;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        serde_yaml::from_str(s).map_err(Error::new)
    }
}
impl FromStr for v2::RegistryType {
    type Err = Error;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        serde_yaml::from_str(s).map_err(Error::new)
    }
}