pub struct EnvKey {
pub key: String,
pub value: String,
}Expand description
An environment key emitted by a plugin.
Fields§
§key: StringEnvironment variable name.
value: StringEnvironment variable value.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EnvKey
impl<'de> Deserialize<'de> for EnvKey
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
impl Eq for EnvKey
impl StructuralPartialEq for EnvKey
Auto Trait Implementations§
impl Freeze for EnvKey
impl RefUnwindSafe for EnvKey
impl Send for EnvKey
impl Sync for EnvKey
impl Unpin for EnvKey
impl UnsafeUnpin for EnvKey
impl UnwindSafe for EnvKey
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