pub struct EnvironmentVariableInventory {
pub build_flags: Option<HashMap<String, EnvironmentVariableInfo>>,
pub build_config: Option<HashMap<String, EnvironmentVariableInfo>>,
pub node: Option<HashMap<String, EnvironmentVariableInfo>>,
pub rust: Option<HashMap<String, EnvironmentVariableInfo>>,
pub mountain: Option<HashMap<String, EnvironmentVariableInfo>>,
pub tauri: Option<HashMap<String, EnvironmentVariableInfo>>,
pub apple: Option<HashMap<String, EnvironmentVariableInfo>>,
pub android: Option<HashMap<String, EnvironmentVariableInfo>>,
pub ci: Option<HashMap<String, EnvironmentVariableInfo>>,
pub api: Option<HashMap<String, EnvironmentVariableInfo>>,
pub other: Option<HashMap<String, EnvironmentVariableInfo>>,
}Expand description
Environment variable inventory structure
Fields§
§build_flags: Option<HashMap<String, EnvironmentVariableInfo>>Build flags
build_config: Option<HashMap<String, EnvironmentVariableInfo>>Build configuration
node: Option<HashMap<String, EnvironmentVariableInfo>>Node.js configuration
rust: Option<HashMap<String, EnvironmentVariableInfo>>Rust configuration
mountain: Option<HashMap<String, EnvironmentVariableInfo>>Mountain configuration
tauri: Option<HashMap<String, EnvironmentVariableInfo>>Tauri configuration
apple: Option<HashMap<String, EnvironmentVariableInfo>>Apple signing configuration
android: Option<HashMap<String, EnvironmentVariableInfo>>Android configuration
ci: Option<HashMap<String, EnvironmentVariableInfo>>CI/CD configuration
api: Option<HashMap<String, EnvironmentVariableInfo>>API configuration
other: Option<HashMap<String, EnvironmentVariableInfo>>Other configuration
Trait Implementations§
Source§impl Clone for EnvironmentVariableInventory
impl Clone for EnvironmentVariableInventory
Source§fn clone(&self) -> EnvironmentVariableInventory
fn clone(&self) -> EnvironmentVariableInventory
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 EnvironmentVariableInventory
impl Debug for EnvironmentVariableInventory
Source§impl<'de> Deserialize<'de> for EnvironmentVariableInventory
impl<'de> Deserialize<'de> for EnvironmentVariableInventory
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 EnvironmentVariableInventory
impl RefUnwindSafe for EnvironmentVariableInventory
impl Send for EnvironmentVariableInventory
impl Sync for EnvironmentVariableInventory
impl Unpin for EnvironmentVariableInventory
impl UnwindSafe for EnvironmentVariableInventory
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