Enum tls_parser::tls_alert::TlsAlertSeverity
[−]
[src]
pub enum TlsAlertSeverity {
Warning,
Fatal,
}Variants
WarningFatalMethods
impl TlsAlertSeverity[src]
fn try_from_u8(original: u8) -> Result<Self, IntToEnumError>
Trait Implementations
impl Debug for TlsAlertSeverity[src]
impl PartialEq for TlsAlertSeverity[src]
fn eq(&self, __arg_0: &TlsAlertSeverity) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl From<u8> for TlsAlertSeverity[src]
fn from(t: u8) -> TlsAlertSeverity
Performs the conversion.