[][src]Struct envfile::EnvFile

pub struct EnvFile {
    pub path: PathBuf,
    pub store: BTreeMap<String, String>,
}

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.

Methods

impl EnvFile[src]

pub fn new<P: Into<PathBuf>>(path: P) -> Result<Self>[src]

Open and parse an environment file.

pub fn update(&mut self, key: &str, value: &str) -> &mut Self[src]

Update or insert a key into the map.

pub fn get(&self, key: &str) -> Option<&str>[src]

Fetch a key from the map.

pub fn write(&mut self) -> Result<()>[src]

Write the map back to the original file.

Notes

The keys are written in ascending order.

Auto Trait Implementations

impl Send for EnvFile

impl Sync for EnvFile

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.