pub struct EnvironmentInstance {
    pub created_by: Option<IdentityRef>,
    pub created_on: Option<OffsetDateTime>,
    pub description: Option<String>,
    pub id: Option<i32>,
    pub last_modified_by: Option<IdentityRef>,
    pub last_modified_on: Option<OffsetDateTime>,
    pub name: Option<String>,
    pub project: Option<ProjectReference>,
    pub resources: Vec<EnvironmentResourceReference>,
}Expand description
Environment.
Fields§
§created_by: Option<IdentityRef>§created_on: Option<OffsetDateTime>Creation time of the Environment
description: Option<String>Description of the Environment.
id: Option<i32>Id of the Environment
last_modified_by: Option<IdentityRef>§last_modified_on: Option<OffsetDateTime>Last modified time of the Environment
name: Option<String>Name of the Environment.
project: Option<ProjectReference>§resources: Vec<EnvironmentResourceReference>Implementations§
Trait Implementations§
source§impl Clone for EnvironmentInstance
 
impl Clone for EnvironmentInstance
source§fn clone(&self) -> EnvironmentInstance
 
fn clone(&self) -> EnvironmentInstance
Returns a copy of the value. Read more
1.0.0 · 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 EnvironmentInstance
 
impl Debug for EnvironmentInstance
source§impl Default for EnvironmentInstance
 
impl Default for EnvironmentInstance
source§fn default() -> EnvironmentInstance
 
fn default() -> EnvironmentInstance
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for EnvironmentInstance
 
impl<'de> Deserialize<'de> for EnvironmentInstance
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
source§impl PartialEq for EnvironmentInstance
 
impl PartialEq for EnvironmentInstance
source§fn eq(&self, other: &EnvironmentInstance) -> bool
 
fn eq(&self, other: &EnvironmentInstance) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for EnvironmentInstance
 
impl Serialize for EnvironmentInstance
impl StructuralPartialEq for EnvironmentInstance
Auto Trait Implementations§
impl RefUnwindSafe for EnvironmentInstance
impl Send for EnvironmentInstance
impl Sync for EnvironmentInstance
impl Unpin for EnvironmentInstance
impl UnwindSafe for EnvironmentInstance
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