pub struct SetEnvReq {
pub app: Option<String>,
pub env: Option<Vec<EnvVarJson>>,
pub project: Option<String>,
}Fields§
§app: Option<String>App is the application’s slug, from the path.
env: Option<Vec<EnvVarJson>>Env is the app’s whole environment set, REPLACING what it had. Keys must match ^[A-Za-z_][A-Za-z0-9_]*$; a variable marked secret: true is sealed into KMS and blanked in the database.
project: Option<String>Project is the project the application lives under, from the path.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SetEnvReq
impl<'de> Deserialize<'de> for SetEnvReq
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for SetEnvReq
Auto Trait Implementations§
impl Freeze for SetEnvReq
impl RefUnwindSafe for SetEnvReq
impl Send for SetEnvReq
impl Sync for SetEnvReq
impl Unpin for SetEnvReq
impl UnsafeUnpin for SetEnvReq
impl UnwindSafe for SetEnvReq
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