pub struct AuthenticodeInfo {
pub certificates: Vec<AuthenticodeCertificate>,
}
Expand description
Contains information about the Authenticode signature of a PE file.
Fields§
§certificates: Vec<AuthenticodeCertificate>
List of certificates with additional information found in the PE file.
Trait Implementations§
Source§impl Debug for AuthenticodeInfo
impl Debug for AuthenticodeInfo
Source§impl TryFrom<&[u8]> for AuthenticodeInfo
Tries to create an AuthenticodeInfo
struct from a slice of bytes.
impl TryFrom<&[u8]> for AuthenticodeInfo
Tries to create an AuthenticodeInfo
struct from a slice of bytes.
Auto Trait Implementations§
impl Freeze for AuthenticodeInfo
impl RefUnwindSafe for AuthenticodeInfo
impl Send for AuthenticodeInfo
impl Sync for AuthenticodeInfo
impl Unpin for AuthenticodeInfo
impl UnwindSafe for AuthenticodeInfo
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