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