pub struct PostEnvironmentsBodyEnvironmentValuesItemItem {
pub enabled: Option<bool>,
pub key: Option<String>,
pub post_environments_body_environment_values_item_item_type: Option<PurpleType>,
pub value: Option<String>,
}
Fields§
§enabled: Option<bool>
If true, the variable is enabled.
key: Option<String>
The variable’s name.
post_environments_body_environment_values_item_item_type: Option<PurpleType>
The variable type.
value: Option<String>
The variable’s value.
Trait Implementations§
Source§impl Clone for PostEnvironmentsBodyEnvironmentValuesItemItem
impl Clone for PostEnvironmentsBodyEnvironmentValuesItemItem
Source§fn clone(&self) -> PostEnvironmentsBodyEnvironmentValuesItemItem
fn clone(&self) -> PostEnvironmentsBodyEnvironmentValuesItemItem
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 PostEnvironmentsBodyEnvironmentValuesItemItem
impl<'de> Deserialize<'de> for PostEnvironmentsBodyEnvironmentValuesItemItem
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 PostEnvironmentsBodyEnvironmentValuesItemItem
impl PartialEq for PostEnvironmentsBodyEnvironmentValuesItemItem
Source§fn eq(&self, other: &PostEnvironmentsBodyEnvironmentValuesItemItem) -> bool
fn eq(&self, other: &PostEnvironmentsBodyEnvironmentValuesItemItem) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PostEnvironmentsBodyEnvironmentValuesItemItem
Auto Trait Implementations§
impl Freeze for PostEnvironmentsBodyEnvironmentValuesItemItem
impl RefUnwindSafe for PostEnvironmentsBodyEnvironmentValuesItemItem
impl Send for PostEnvironmentsBodyEnvironmentValuesItemItem
impl Sync for PostEnvironmentsBodyEnvironmentValuesItemItem
impl Unpin for PostEnvironmentsBodyEnvironmentValuesItemItem
impl UnwindSafe for PostEnvironmentsBodyEnvironmentValuesItemItem
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