pub struct ProfileTokenConfig<'a> {
pub token_name_arg: Option<&'a str>,
pub token_name_env_var: &'a str,
pub token_name_file_var: &'a str,
pub token_var_prefix: &'a str,
pub tokens_env: &'a Path,
pub tokens_local: &'a Path,
pub tokens_files: &'a [&'a Path],
pub missing_profile_hint: &'a str,
pub env_fallback_keys: &'a [&'a str],
}Fields§
§token_name_arg: Option<&'a str>§token_name_env_var: &'a str§token_name_file_var: &'a str§token_var_prefix: &'a str§tokens_env: &'a Path§tokens_local: &'a Path§tokens_files: &'a [&'a Path]§missing_profile_hint: &'a str§env_fallback_keys: &'a [&'a str]Trait Implementations§
Source§impl<'a> Clone for ProfileTokenConfig<'a>
impl<'a> Clone for ProfileTokenConfig<'a>
Source§fn clone(&self) -> ProfileTokenConfig<'a>
fn clone(&self) -> ProfileTokenConfig<'a>
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<'a> Debug for ProfileTokenConfig<'a>
impl<'a> Debug for ProfileTokenConfig<'a>
impl<'a> Copy for ProfileTokenConfig<'a>
Auto Trait Implementations§
impl<'a> Freeze for ProfileTokenConfig<'a>
impl<'a> RefUnwindSafe for ProfileTokenConfig<'a>
impl<'a> Send for ProfileTokenConfig<'a>
impl<'a> Sync for ProfileTokenConfig<'a>
impl<'a> Unpin for ProfileTokenConfig<'a>
impl<'a> UnsafeUnpin for ProfileTokenConfig<'a>
impl<'a> UnwindSafe for ProfileTokenConfig<'a>
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