pub struct Subpacket {
pub packet_type: u8,
pub critical: bool,
pub data: SubpacketData,
}Expand description
A parsed signature subpacket.
Fields§
§packet_type: u8Subpacket type identifier.
critical: boolWhether this subpacket is critical (must be understood).
data: SubpacketDataThe parsed subpacket data.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Subpacket
impl RefUnwindSafe for Subpacket
impl Send for Subpacket
impl Sync for Subpacket
impl Unpin for Subpacket
impl UnsafeUnpin for Subpacket
impl UnwindSafe for Subpacket
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more