pub struct Config {
pub server: String,
pub token: String,
pub output_format: OutputFormat,
pub include: IncludeOptions,
pub verbose: bool,
pub timeout: u64,
pub test_outcomes: Vec<TestOutcome>,
}Expand description
Resolved configuration after merging all sources.
Fields§
§server: StringDevelocity server URL.
token: StringAccess token for authentication.
output_format: OutputFormatOutput format.
include: IncludeOptionsWhat data to include in the output.
verbose: boolWhether to show verbose output (stacktraces, etc.).
timeout: u64Request timeout in seconds.
test_outcomes: Vec<TestOutcome>Filter test results by these outcomes (server-side). Empty means all.
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