pub enum CoffFileType {
Object,
StaticLibrary,
Executable,
DynamicLibrary,
}Expand description
COFF file type enum
Distinguishes between different types of COFF-related file formats.
Variants§
Object
COFF object file (.obj)
StaticLibrary
Static library file (.lib)
Executable
PE executable file (.exe)
DynamicLibrary
PE dynamic library file (.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 UnsafeUnpin 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