pub struct EnvGroup {
pub env_vars: Vec<EnvVar>,
pub id: String,
pub name: String,
pub owner_id: String,
pub secret_files: Vec<SecretFile>,
pub service_links: Vec<ServiceLink>,
}
Fields§
§env_vars: Vec<EnvVar>
§id: String
§name: String
§owner_id: String
§secret_files: Vec<SecretFile>
§service_links: Vec<ServiceLink>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EnvGroup
impl<'de> Deserialize<'de> for EnvGroup
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
Auto Trait Implementations§
impl Freeze for EnvGroup
impl RefUnwindSafe for EnvGroup
impl Send for EnvGroup
impl Sync for EnvGroup
impl Unpin for EnvGroup
impl UnwindSafe for EnvGroup
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