pub struct DockerConfig {
pub connection: Option<DockerConnectionConfig>,
pub execution: Option<DockerExecutionConfig>,
pub timeouts: Option<DockerTimeoutConfig>,
}Fields§
§connection: Option<DockerConnectionConfig>§execution: Option<DockerExecutionConfig>§timeouts: Option<DockerTimeoutConfig>Implementations§
Source§impl DockerConfig
impl DockerConfig
pub fn new() -> DockerConfig
Trait Implementations§
Source§impl Clone for DockerConfig
impl Clone for DockerConfig
Source§fn clone(&self) -> DockerConfig
fn clone(&self) -> DockerConfig
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 DockerConfig
impl Debug for DockerConfig
Source§impl<'de> Deserialize<'de> for DockerConfig
impl<'de> Deserialize<'de> for DockerConfig
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 FromStr for DockerConfig
Converts Query Parameters representation (style=form, explode=false) to a DockerConfig value
as specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde deserializer
impl FromStr for DockerConfig
Converts Query Parameters representation (style=form, explode=false) to a DockerConfig value as specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde deserializer
Source§impl PartialEq for DockerConfig
impl PartialEq for DockerConfig
Source§impl Serialize for DockerConfig
impl Serialize for DockerConfig
Source§impl ToString for DockerConfig
Converts the DockerConfig value to the Query Parameters representation (style=form, explode=false)
specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde serializer
impl ToString for DockerConfig
Converts the DockerConfig value to the Query Parameters representation (style=form, explode=false) specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde serializer
Source§impl Validate for DockerConfig
impl Validate for DockerConfig
Source§impl<'v_a> ValidateArgs<'v_a> for DockerConfig
impl<'v_a> ValidateArgs<'v_a> for DockerConfig
impl StructuralPartialEq for DockerConfig
Auto Trait Implementations§
impl Freeze for DockerConfig
impl RefUnwindSafe for DockerConfig
impl Send for DockerConfig
impl Sync for DockerConfig
impl Unpin for DockerConfig
impl UnwindSafe for DockerConfig
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