pub enum CoffFileType {
Object,
StaticLibrary,
Executable,
DynamicLibrary,
}Expand description
COFF 文件类型枚举
区分不同类型的 COFF 相关文件格式。
Variants§
Object
COFF 对象文件 (.obj)
StaticLibrary
静态库文件 (.lib)
Executable
PE 可执行文件 (.exe)
DynamicLibrary
PE 动态库文件 (.dll)
Trait Implementations§
Source§impl Clone for CoffFileType
impl Clone for CoffFileType
Source§fn clone(&self) -> CoffFileType
fn clone(&self) -> CoffFileType
Returns a duplicate 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 moreSource§impl Debug for CoffFileType
impl Debug for CoffFileType
Source§impl<'de> Deserialize<'de> for CoffFileType
impl<'de> Deserialize<'de> for CoffFileType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CoffFileType
impl PartialEq for CoffFileType
Source§impl Serialize for CoffFileType
impl Serialize for CoffFileType
impl Copy for CoffFileType
impl Eq for CoffFileType
impl StructuralPartialEq for CoffFileType
Auto Trait Implementations§
impl Freeze for CoffFileType
impl RefUnwindSafe for CoffFileType
impl Send for CoffFileType
impl Sync for CoffFileType
impl Unpin for CoffFileType
impl UnwindSafe for CoffFileType
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