pub type RegistryAuth = RegistryAuth;
👎Deprecated since 0.8.0: Please use
docker_sdk::image::RegistryAuth
. This will be removed in 0.9.0.Aliased Type§
enum RegistryAuth {
Password {
username: String,
password: String,
email: Option<String>,
server_address: Option<String>,
},
Token {
identity_token: String,
},
}