pub struct EnvironmentVariableInfo {
pub var_type: Option<String>,
pub description: Option<String>,
pub values: Option<Vec<String>>,
pub default: Option<String>,
pub config_path: Option<String>,
pub sensitive: Option<bool>,
}Expand description
Environment variable information
Fields§
§var_type: Option<String>Variable type
description: Option<String>Description
values: Option<Vec<String>>Allowed values
default: Option<String>Default value
config_path: Option<String>Configuration path
sensitive: Option<bool>Whether this is sensitive
Trait Implementations§
Source§impl Clone for EnvironmentVariableInfo
impl Clone for EnvironmentVariableInfo
Source§fn clone(&self) -> EnvironmentVariableInfo
fn clone(&self) -> EnvironmentVariableInfo
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 EnvironmentVariableInfo
impl Debug for EnvironmentVariableInfo
Source§impl<'de> Deserialize<'de> for EnvironmentVariableInfo
impl<'de> Deserialize<'de> for EnvironmentVariableInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EnvironmentVariableInfo
impl RefUnwindSafe for EnvironmentVariableInfo
impl Send for EnvironmentVariableInfo
impl Sync for EnvironmentVariableInfo
impl Unpin for EnvironmentVariableInfo
impl UnwindSafe for EnvironmentVariableInfo
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