Whether this record's payload is encrypted.
(&self)
| 157 | |
| 158 | /// Whether this record's payload is encrypted. |
| 159 | pub fn is_encrypted(&self) -> bool { |
| 160 | self.header.record_type & ENCRYPTED_FLAG != 0 |
| 161 | } |
| 162 | |
| 163 | /// Logical record type with the encryption flag stripped. |
| 164 | pub fn logical_record_type(&self) -> u32 { |
no outgoing calls
no test coverage detected