rnp-rs 0.1.7

Idiomatic Rust binding to the RNP OpenPGP C FFI (librnp)
1
2
3
4
5
6
7
8
//! [`FileInfo`] — file metadata from the literal-data packet.

/// File metadata from the literal-data packet.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct FileInfo {
    pub name: String,
    pub mtime: u32,
}