pub struct CLIFlagOptions {
pub separator: String,
}Available on crate feature
cli only.Expand description
Options for loading configuration from CLI flags.
Fields§
§separator: StringSeparator for nested struct fields in flag names (e.g. "." → --database.host).
Trait Implementations§
Source§impl Clone for CLIFlagOptions
impl Clone for CLIFlagOptions
Source§fn clone(&self) -> CLIFlagOptions
fn clone(&self) -> CLIFlagOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CLIFlagOptions
impl RefUnwindSafe for CLIFlagOptions
impl Send for CLIFlagOptions
impl Sync for CLIFlagOptions
impl Unpin for CLIFlagOptions
impl UnsafeUnpin for CLIFlagOptions
impl UnwindSafe for CLIFlagOptions
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