pub struct EnvEntry {
pub name: String,
pub typ: String,
pub default: Option<String>,
}
Expand description
Represents an environment variable entry with its name, type, and optional default value.
Fields§
§name: String
§typ: String
§default: Option<String>
Auto Trait Implementations§
impl Freeze for EnvEntry
impl RefUnwindSafe for EnvEntry
impl Send for EnvEntry
impl Sync for EnvEntry
impl Unpin for EnvEntry
impl UnwindSafe for EnvEntry
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