pub struct EnvironmentRecord {
pub id: String,
pub application_id: String,
pub name: String,
pub description: Option<String>,
pub state: String,
pub monitors: Value,
pub deployments: BTreeMap<i64, DeploymentRecord>,
pub next_deployment_number: i64,
}Expand description
An environment, nested under an application.
Fields§
§id: String§application_id: String§name: String§description: Option<String>§state: String§monitors: Value§deployments: BTreeMap<i64, DeploymentRecord>§next_deployment_number: i64Trait Implementations§
Source§impl Clone for EnvironmentRecord
impl Clone for EnvironmentRecord
Source§fn clone(&self) -> EnvironmentRecord
fn clone(&self) -> EnvironmentRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EnvironmentRecord
impl Debug for EnvironmentRecord
Source§impl<'de> Deserialize<'de> for EnvironmentRecord
impl<'de> Deserialize<'de> for EnvironmentRecord
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 EnvironmentRecord
impl RefUnwindSafe for EnvironmentRecord
impl Send for EnvironmentRecord
impl Sync for EnvironmentRecord
impl Unpin for EnvironmentRecord
impl UnsafeUnpin for EnvironmentRecord
impl UnwindSafe for EnvironmentRecord
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