pub struct AppConfig {
pub command: CommandConfig,
pub output: OutputConfig,
pub logging: LoggingConfig,
pub client: ClientOptions,
}Expand description
Resolved runtime configuration assembled from CLI input.
Fields§
§command: CommandConfigSelected application command.
output: OutputConfigOutput behavior for stdout messages.
logging: LoggingConfigLogging behavior for stderr events.
client: ClientOptionsShared client configuration used by the client, CLI, and server flows.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AppConfig
impl RefUnwindSafe for AppConfig
impl Send for AppConfig
impl Sync for AppConfig
impl Unpin for AppConfig
impl UnsafeUnpin for AppConfig
impl UnwindSafe for AppConfig
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