pub struct EnvFile<'a> {
pub entries: Vec<EnvEntry<'a>>,
}
Expand description
Represents a parsed environment file with preserved comments.
The EnvFile
contains a sequence of entries that can be variables,
comments, or empty lines, maintaining the original file structure.
Fields§
§entries: Vec<EnvEntry<'a>>
Implementations§
Trait Implementations§
impl<'a> StructuralPartialEq for EnvFile<'a>
Auto Trait Implementations§
impl<'a> Freeze for EnvFile<'a>
impl<'a> RefUnwindSafe for EnvFile<'a>
impl<'a> Send for EnvFile<'a>
impl<'a> Sync for EnvFile<'a>
impl<'a> Unpin for EnvFile<'a>
impl<'a> UnwindSafe for EnvFile<'a>
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