pub struct EnvVar {
pub key: String,
pub value: String,
pub comment: Option<String>,
pub temp_id: Uuid,
}Expand description
Represents a single environment variable with an optional comment
Fields§
§key: String§value: String§comment: Option<String>§temp_id: UuidImplementations§
Trait Implementations§
impl StructuralPartialEq for EnvVar
Auto Trait Implementations§
impl Freeze for EnvVar
impl RefUnwindSafe for EnvVar
impl Send for EnvVar
impl Sync for EnvVar
impl Unpin for EnvVar
impl UnwindSafe for EnvVar
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