pub struct EnvRefs {
pub vars: Vec<(String, Source)>,
pub project: Option<String>,
}Expand description
A parsed .env.refs: ordered variable bindings plus the optional project link.
Fields§
§vars: Vec<(String, Source)>Variable bindings, in file order (resolution is a single ordered pass).
project: Option<String>The project = <name> link (§4.1 line type 6), consumed by the Wrapper.
Implementations§
Trait Implementations§
impl Eq for EnvRefs
impl StructuralPartialEq for EnvRefs
Auto Trait Implementations§
impl Freeze for EnvRefs
impl RefUnwindSafe for EnvRefs
impl Send for EnvRefs
impl Sync for EnvRefs
impl Unpin for EnvRefs
impl UnsafeUnpin for EnvRefs
impl UnwindSafe for EnvRefs
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