pub struct NamingOptions {
pub uppercase: bool,
pub replace_dash: Option<char>,
pub prefix: Option<String>,
}Expand description
Options for naming environment variables when injecting secrets.
Fields§
§uppercase: bool§replace_dash: Option<char>§prefix: Option<String>Trait Implementations§
Source§impl Clone for NamingOptions
impl Clone for NamingOptions
Source§fn clone(&self) -> NamingOptions
fn clone(&self) -> NamingOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NamingOptions
impl Debug for NamingOptions
Source§impl Default for NamingOptions
impl Default for NamingOptions
Source§fn default() -> NamingOptions
fn default() -> NamingOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for NamingOptions
impl RefUnwindSafe for NamingOptions
impl Send for NamingOptions
impl Sync for NamingOptions
impl Unpin for NamingOptions
impl UnsafeUnpin for NamingOptions
impl UnwindSafe for NamingOptions
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