pub struct DevEnv {
pub vars: Vec<(String, String)>,
pub unresolved_secrets: Vec<String>,
}Expand description
Environment for forte dev, resolved without network or credentials:
plain env.yaml entries overlaid with env.local.yaml.
Fields§
§vars: Vec<(String, String)>§unresolved_secrets: Vec<String>env.yaml secrets with no env.local.yaml override. Their ciphertext
can only be opened by the worker’s vault, so dev leaves them unset.
Trait Implementations§
impl Eq for DevEnv
impl StructuralPartialEq for DevEnv
Auto Trait Implementations§
impl Freeze for DevEnv
impl RefUnwindSafe for DevEnv
impl Send for DevEnv
impl Sync for DevEnv
impl Unpin for DevEnv
impl UnsafeUnpin for DevEnv
impl UnwindSafe for DevEnv
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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.