pub struct EnvironmentLayer<'a> {
pub source: EnvironmentSource,
pub values: Vec<(&'a str, &'a str)>,
}Expand description
One layer of the environment.
Fields§
§source: EnvironmentSourceWhere these values came from.
values: Vec<(&'a str, &'a str)>The values themselves.
Auto Trait Implementations§
impl<'a> Freeze for EnvironmentLayer<'a>
impl<'a> RefUnwindSafe for EnvironmentLayer<'a>
impl<'a> Send for EnvironmentLayer<'a>
impl<'a> Sync for EnvironmentLayer<'a>
impl<'a> Unpin for EnvironmentLayer<'a>
impl<'a> UnsafeUnpin for EnvironmentLayer<'a>
impl<'a> UnwindSafe for EnvironmentLayer<'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