pub struct CliConfig {
pub secret: Option<String>,
pub server: Option<String>,
pub auth_option: Option<String>,
pub endpoint: EndpointConfig,
pub transport: TransportConfig,
pub logging: LoggingConfig,
}Expand description
Represents CLI arguments as a partial configuration
Fields§
§secret: Option<String>§server: Option<String>§auth_option: Option<String>§endpoint: EndpointConfig§transport: TransportConfig§logging: LoggingConfigTrait Implementations§
Auto Trait Implementations§
impl Freeze for CliConfig
impl RefUnwindSafe for CliConfig
impl Send for CliConfig
impl Sync for CliConfig
impl Unpin for CliConfig
impl UnsafeUnpin for CliConfig
impl UnwindSafe for CliConfig
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