enumstd.crypto.tls.ContentType[src]

Fields

invalid = 0
change_cipher_spec = 20
alert = 21
handshake = 22
application_data = 23
_

Source Code

Source code
pub const ContentType = enum(u8) {
    invalid = 0,
    change_cipher_spec = 20,
    alert = 21,
    handshake = 22,
    application_data = 23,
    _,
}