Enum docker_api::conn::Transport [−][src]
pub enum Transport {
Tcp {
client: Client<HttpConnector>,
host: Url,
},
EncryptedTcp {
client: Client<HttpsConnector<HttpConnector>>,
host: Url,
},
Unix {
client: Client<UnixConnector>,
path: PathBuf,
},
}
Expand description
Transports are types which define the means of communication with the docker daemon
Variants
Tcp
A network tcp interface
EncryptedTcp
This is supported on crate feature
tls
only.TCP/TLS
Unix
A Unix domain socket
Implementations
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for Transport
impl !UnwindSafe for Transport
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more