pub struct EnvFile {
pub path: PathBuf,
pub store: BTreeMap<String, String>,
}
Expand description
An opened environment file, whose contents are buffered into memory.
Fields§
§path: PathBuf
Where the environment file exists in memory.
store: BTreeMap<String, String>
The data that was parsed from the file.
Implementations§
Auto Trait Implementations§
impl Freeze for EnvFile
impl RefUnwindSafe for EnvFile
impl Send for EnvFile
impl Sync for EnvFile
impl Unpin for EnvFile
impl UnwindSafe for EnvFile
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