pub struct EnvironmentValue {
pub key: String,
pub value: Option<String>,
pub description: Option<String>,
pub enabled: bool,
}Expand description
Environment variable value from Postman
Fields§
§key: StringVariable key/name
value: Option<String>Variable value (optional)
description: Option<String>Optional description of the variable
enabled: boolWhether this variable is enabled
Trait Implementations§
Source§impl Debug for EnvironmentValue
impl Debug for EnvironmentValue
Source§impl<'de> Deserialize<'de> for EnvironmentValue
impl<'de> Deserialize<'de> for EnvironmentValue
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 EnvironmentValue
impl RefUnwindSafe for EnvironmentValue
impl Send for EnvironmentValue
impl Sync for EnvironmentValue
impl Unpin for EnvironmentValue
impl UnsafeUnpin for EnvironmentValue
impl UnwindSafe for EnvironmentValue
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