pub struct DockerDetailsPost {
pub docker_command: Option<String>,
pub docker_context: Option<String>,
pub dockerfile_path: Option<String>,
pub registry_credential_id: Option<String>,
}Expand description
DockerDetailsPost
JSON schema
{
"type": "object",
"properties": {
"dockerCommand": {
"type": "string"
},
"dockerContext": {
"type": "string"
},
"dockerfilePath": {
"description": "Defaults to \"./Dockerfile\"",
"type": "string"
},
"registryCredentialId": {
"type": "string"
}
}
}Fields§
§docker_command: Option<String>§docker_context: Option<String>§dockerfile_path: Option<String>Defaults to “./Dockerfile”
registry_credential_id: Option<String>Trait Implementations§
Source§impl Clone for DockerDetailsPost
impl Clone for DockerDetailsPost
Source§fn clone(&self) -> DockerDetailsPost
fn clone(&self) -> DockerDetailsPost
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 DockerDetailsPost
impl Debug for DockerDetailsPost
Source§impl Default for DockerDetailsPost
impl Default for DockerDetailsPost
Source§impl<'de> Deserialize<'de> for DockerDetailsPost
impl<'de> Deserialize<'de> for DockerDetailsPost
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<DockerDetailsPost> for EnvSpecificDetailsPost
impl From<DockerDetailsPost> for EnvSpecificDetailsPost
Source§fn from(value: DockerDetailsPost) -> Self
fn from(value: DockerDetailsPost) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DockerDetailsPost
impl RefUnwindSafe for DockerDetailsPost
impl Send for DockerDetailsPost
impl Sync for DockerDetailsPost
impl Unpin for DockerDetailsPost
impl UnsafeUnpin for DockerDetailsPost
impl UnwindSafe for DockerDetailsPost
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