pub enum DLLStorageClass {
Default,
Import,
Export,
}Variants§
Trait Implementations§
source§impl Clone for DLLStorageClass
impl Clone for DLLStorageClass
source§fn clone(&self) -> DLLStorageClass
fn clone(&self) -> DLLStorageClass
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 moresource§impl Debug for DLLStorageClass
impl Debug for DLLStorageClass
source§impl Default for DLLStorageClass
impl Default for DLLStorageClass
source§impl From<LLVMDLLStorageClass> for DLLStorageClass
impl From<LLVMDLLStorageClass> for DLLStorageClass
source§fn from(src: LLVMDLLStorageClass) -> Self
fn from(src: LLVMDLLStorageClass) -> Self
Converts to this type from the input type.
source§impl Hash for DLLStorageClass
impl Hash for DLLStorageClass
source§impl Into<LLVMDLLStorageClass> for DLLStorageClass
impl Into<LLVMDLLStorageClass> for DLLStorageClass
source§fn into(self) -> LLVMDLLStorageClass
fn into(self) -> LLVMDLLStorageClass
Converts this type into the (usually inferred) input type.
source§impl Ord for DLLStorageClass
impl Ord for DLLStorageClass
source§fn cmp(&self, other: &DLLStorageClass) -> Ordering
fn cmp(&self, other: &DLLStorageClass) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<DLLStorageClass> for DLLStorageClass
impl PartialEq<DLLStorageClass> for DLLStorageClass
source§fn eq(&self, other: &DLLStorageClass) -> bool
fn eq(&self, other: &DLLStorageClass) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<DLLStorageClass> for DLLStorageClass
impl PartialOrd<DLLStorageClass> for DLLStorageClass
source§fn partial_cmp(&self, other: &DLLStorageClass) -> Option<Ordering>
fn partial_cmp(&self, other: &DLLStorageClass) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more