pub struct EnvironmentCreateParameter {
pub description: Option<String>,
pub name: Option<String>,
}Expand description
Properties to create Environment.
Fields§
§description: Option<String>Description of the environment.
name: Option<String>Name of the environment.
Implementations§
Trait Implementations§
source§impl Clone for EnvironmentCreateParameter
impl Clone for EnvironmentCreateParameter
source§fn clone(&self) -> EnvironmentCreateParameter
fn clone(&self) -> EnvironmentCreateParameter
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 EnvironmentCreateParameter
impl Debug for EnvironmentCreateParameter
source§impl Default for EnvironmentCreateParameter
impl Default for EnvironmentCreateParameter
source§fn default() -> EnvironmentCreateParameter
fn default() -> EnvironmentCreateParameter
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for EnvironmentCreateParameter
impl<'de> Deserialize<'de> for EnvironmentCreateParameter
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 EnvironmentCreateParameter
impl PartialEq for EnvironmentCreateParameter
source§fn eq(&self, other: &EnvironmentCreateParameter) -> bool
fn eq(&self, other: &EnvironmentCreateParameter) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for EnvironmentCreateParameter
Auto Trait Implementations§
impl Freeze for EnvironmentCreateParameter
impl RefUnwindSafe for EnvironmentCreateParameter
impl Send for EnvironmentCreateParameter
impl Sync for EnvironmentCreateParameter
impl Unpin for EnvironmentCreateParameter
impl UnwindSafe for EnvironmentCreateParameter
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