Enum lief::pe::symbol::StorageClass
pub enum StorageClass {
Show 29 variants
INVALID,
END_OF_FUNCTION,
NONE,
AUTOMATIC,
EXTERNAL,
STATIC,
REGISTER,
EXTERNAL_DEF,
LABEL,
UNDEFINED_LABEL,
MEMBER_OF_STRUCT,
ARGUMENT,
STRUCT_TAG,
MEMBER_OF_UNION,
UNION_TAG,
TYPE_DEFINITION,
UNDEFINED_STATIC,
ENUM_TAG,
MEMBER_OF_ENUM,
REGISTER_PARAM,
BIT_FIELD,
BLOCK,
FUNCTION,
END_OF_STRUCT,
FILE,
SECTION,
WEAK_EXTERNAL,
CLR_TOKEN,
UNKNOWN(u32),
}
Variants§
INVALID
END_OF_FUNCTION
NONE
AUTOMATIC
EXTERNAL
STATIC
REGISTER
EXTERNAL_DEF
LABEL
UNDEFINED_LABEL
MEMBER_OF_STRUCT
ARGUMENT
STRUCT_TAG
MEMBER_OF_UNION
UNION_TAG
TYPE_DEFINITION
UNDEFINED_STATIC
ENUM_TAG
MEMBER_OF_ENUM
REGISTER_PARAM
BIT_FIELD
BLOCK
FUNCTION
END_OF_STRUCT
FILE
SECTION
WEAK_EXTERNAL
CLR_TOKEN
UNKNOWN(u32)
Trait Implementations§
§impl Clone for StorageClass
impl Clone for StorageClass
§fn clone(&self) -> StorageClass
fn clone(&self) -> StorageClass
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 StorageClass
impl Debug for StorageClass
§impl From<StorageClass> for u32
impl From<StorageClass> for u32
§fn from(value: StorageClass) -> u32
fn from(value: StorageClass) -> u32
Converts to this type from the input type.
§impl From<u32> for StorageClass
impl From<u32> for StorageClass
§impl Hash for StorageClass
impl Hash for StorageClass
§impl PartialEq<StorageClass> for StorageClass
impl PartialEq<StorageClass> for StorageClass
§fn eq(&self, other: &StorageClass) -> bool
fn eq(&self, other: &StorageClass) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for StorageClass
impl Eq for StorageClass
impl StructuralEq for StorageClass
impl StructuralPartialEq for StorageClass
Auto Trait Implementations§
impl RefUnwindSafe for StorageClass
impl Send for StorageClass
impl Sync for StorageClass
impl Unpin for StorageClass
impl UnwindSafe for StorageClass
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