pub struct ServiceAndDeploy {
pub deploy_id: Option<String>,
pub service: Option<Service>,
}Expand description
ServiceAndDeploy
JSON schema
{
"type": "object",
"properties": {
"deployId": {
"type": "string"
},
"service": {
"$ref": "#/components/schemas/service"
}
}
}Fields§
§deploy_id: Option<String>§service: Option<Service>Trait Implementations§
Source§impl Clone for ServiceAndDeploy
impl Clone for ServiceAndDeploy
Source§fn clone(&self) -> ServiceAndDeploy
fn clone(&self) -> ServiceAndDeploy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ServiceAndDeploy
impl Debug for ServiceAndDeploy
Source§impl Default for ServiceAndDeploy
impl Default for ServiceAndDeploy
Source§impl<'de> Deserialize<'de> for ServiceAndDeploy
impl<'de> Deserialize<'de> for ServiceAndDeploy
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
Auto Trait Implementations§
impl Freeze for ServiceAndDeploy
impl RefUnwindSafe for ServiceAndDeploy
impl Send for ServiceAndDeploy
impl Sync for ServiceAndDeploy
impl Unpin for ServiceAndDeploy
impl UnsafeUnpin for ServiceAndDeploy
impl UnwindSafe for ServiceAndDeploy
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