pub struct Config {
pub repos: Vec<Repo>,
pub ignores: Vec<Ignore>,
pub vex: VexConfig,
pub vex_assertions: Vec<VexAssertion>,
}Fields§
§repos: Vec<Repo>§ignores: Vec<Ignore>§vex: VexConfig§vex_assertions: Vec<VexAssertion>Implementations§
Source§impl Config
impl Config
Sourcepub fn load(path: &Path) -> Result<Self, ConfigError>
pub fn load(path: &Path) -> Result<Self, ConfigError>
Read and validate a fleet.toml from disk. Repo paths are resolved
relative to the config file’s directory.
Sourcepub fn from_str(
text: &str,
base_dir: &Path,
label: &str,
) -> Result<Self, ConfigError>
pub fn from_str( text: &str, base_dir: &Path, label: &str, ) -> Result<Self, ConfigError>
Parse and validate config text with an explicit base directory for
resolving repo paths. Split out from Config::load for testing.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnsafeUnpin for Config
impl UnwindSafe for Config
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more