pub struct GetEnvironmentsEnvironmentIdResponseEnvironment {
pub created_at: Option<String>,
pub id: Option<String>,
pub is_public: Option<bool>,
pub name: Option<String>,
pub owner: Option<String>,
pub updated_at: Option<String>,
pub values: Option<Vec<Vec<GetEnvironmentsEnvironmentIdResponseEnvironmentValuesItemItem>>>,
}
Fields§
§created_at: Option<String>
The date and time at which the environment was created.
id: Option<String>
The environment’s ID.
is_public: Option<bool>
If true, the environment is public.
name: Option<String>
The environment’s name.
owner: Option<String>
The ID of environment’s owner.
updated_at: Option<String>
The date and time at which the environment was last updated.
values: Option<Vec<Vec<GetEnvironmentsEnvironmentIdResponseEnvironmentValuesItemItem>>>
Information about the environment’s variables.
Trait Implementations§
Source§impl Clone for GetEnvironmentsEnvironmentIdResponseEnvironment
impl Clone for GetEnvironmentsEnvironmentIdResponseEnvironment
Source§fn clone(&self) -> GetEnvironmentsEnvironmentIdResponseEnvironment
fn clone(&self) -> GetEnvironmentsEnvironmentIdResponseEnvironment
Returns a duplicate 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<'de> Deserialize<'de> for GetEnvironmentsEnvironmentIdResponseEnvironment
impl<'de> Deserialize<'de> for GetEnvironmentsEnvironmentIdResponseEnvironment
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 GetEnvironmentsEnvironmentIdResponseEnvironment
impl PartialEq for GetEnvironmentsEnvironmentIdResponseEnvironment
Source§fn eq(&self, other: &GetEnvironmentsEnvironmentIdResponseEnvironment) -> bool
fn eq(&self, other: &GetEnvironmentsEnvironmentIdResponseEnvironment) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetEnvironmentsEnvironmentIdResponseEnvironment
Auto Trait Implementations§
impl Freeze for GetEnvironmentsEnvironmentIdResponseEnvironment
impl RefUnwindSafe for GetEnvironmentsEnvironmentIdResponseEnvironment
impl Send for GetEnvironmentsEnvironmentIdResponseEnvironment
impl Sync for GetEnvironmentsEnvironmentIdResponseEnvironment
impl Unpin for GetEnvironmentsEnvironmentIdResponseEnvironment
impl UnwindSafe for GetEnvironmentsEnvironmentIdResponseEnvironment
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