usescale::{Decode, Encode};/// TLS server configuration.
#[derive(Encode, Decode, Clone)]pubenumTlsServerConfig{V0{/// Certificate in PEM format.
cert:String,/// The private key of the certificate, in PEM format.
key:String,},}/// TLS client configuration.
#[derive(Encode, Decode, Clone)]pubenumTlsClientConfig{/// Nothing to be configured in this version.
V0,}