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 for DLLStorageClass
impl PartialEq for DLLStorageClass
Source§impl PartialOrd for DLLStorageClass
impl PartialOrd for DLLStorageClass
impl Copy for DLLStorageClass
impl Eq for DLLStorageClass
impl StructuralPartialEq for DLLStorageClass
Auto Trait Implementations§
impl Freeze for DLLStorageClass
impl RefUnwindSafe for DLLStorageClass
impl Send for DLLStorageClass
impl Sync for DLLStorageClass
impl Unpin for DLLStorageClass
impl UnwindSafe for DLLStorageClass
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more