Enum lief::pe::debug::CodeViewSignature
pub enum CodeViewSignature {
PDB_70,
PDB_20,
CV_50,
CV_41,
UNKNOWN(u32),
}Expand description
Signature type for CodeView debug entries
Variants§
PDB_70
PDB 7.0 signature
PDB_20
PDB 2.0 signature
CV_50
CodeView 5.0 signature
CV_41
CodeView 4.1 signature
UNKNOWN(u32)
Trait Implementations§
§impl Clone for CodeViewSignature
impl Clone for CodeViewSignature
§fn clone(&self) -> CodeViewSignature
fn clone(&self) -> CodeViewSignature
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for CodeViewSignature
impl Debug for CodeViewSignature
§impl From<CodeViewSignature> for u32
impl From<CodeViewSignature> for u32
§fn from(value: CodeViewSignature) -> u32
fn from(value: CodeViewSignature) -> u32
Converts to this type from the input type.
§impl From<u32> for CodeViewSignature
impl From<u32> for CodeViewSignature
§impl Hash for CodeViewSignature
impl Hash for CodeViewSignature
§impl PartialEq<CodeViewSignature> for CodeViewSignature
impl PartialEq<CodeViewSignature> for CodeViewSignature
§fn eq(&self, other: &CodeViewSignature) -> bool
fn eq(&self, other: &CodeViewSignature) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for CodeViewSignature
impl Eq for CodeViewSignature
impl StructuralEq for CodeViewSignature
impl StructuralPartialEq for CodeViewSignature
Auto Trait Implementations§
impl RefUnwindSafe for CodeViewSignature
impl Send for CodeViewSignature
impl Sync for CodeViewSignature
impl Unpin for CodeViewSignature
impl UnwindSafe for CodeViewSignature
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