pub struct DeploymentGroupMinimal {
pub id: String,
pub name: String,
}Expand description
DeploymentGroupMinimal
JSON schema
{
"type": "object",
"required": [
"id",
"name"
],
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
}Fields§
§id: String§name: StringImplementations§
Source§impl DeploymentGroupMinimal
impl DeploymentGroupMinimal
pub fn builder() -> DeploymentGroupMinimal
Trait Implementations§
Source§impl Clone for DeploymentGroupMinimal
impl Clone for DeploymentGroupMinimal
Source§fn clone(&self) -> DeploymentGroupMinimal
fn clone(&self) -> DeploymentGroupMinimal
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 Debug for DeploymentGroupMinimal
impl Debug for DeploymentGroupMinimal
Source§impl<'de> Deserialize<'de> for DeploymentGroupMinimal
impl<'de> Deserialize<'de> for DeploymentGroupMinimal
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 From<&DeploymentGroupMinimal> for DeploymentGroupMinimal
impl From<&DeploymentGroupMinimal> for DeploymentGroupMinimal
Source§fn from(value: &DeploymentGroupMinimal) -> Self
fn from(value: &DeploymentGroupMinimal) -> Self
Converts to this type from the input type.
Source§impl From<DeploymentGroupMinimal> for DeploymentGroupMinimal
impl From<DeploymentGroupMinimal> for DeploymentGroupMinimal
Source§fn from(value: DeploymentGroupMinimal) -> Self
fn from(value: DeploymentGroupMinimal) -> Self
Converts to this type from the input type.
Source§impl Serialize for DeploymentGroupMinimal
impl Serialize for DeploymentGroupMinimal
Source§impl TryFrom<DeploymentGroupMinimal> for DeploymentGroupMinimal
impl TryFrom<DeploymentGroupMinimal> for DeploymentGroupMinimal
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: DeploymentGroupMinimal) -> Result<Self, ConversionError>
fn try_from(value: DeploymentGroupMinimal) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for DeploymentGroupMinimal
impl RefUnwindSafe for DeploymentGroupMinimal
impl Send for DeploymentGroupMinimal
impl Sync for DeploymentGroupMinimal
impl Unpin for DeploymentGroupMinimal
impl UnsafeUnpin for DeploymentGroupMinimal
impl UnwindSafe for DeploymentGroupMinimal
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