#[repr(u8)]pub enum DllStorageClass {
Default = 0,
Import = 1,
Export = 2,
}Variants§
Trait Implementations§
Source§impl Clone for DllStorageClass
impl Clone for DllStorageClass
Source§fn clone(&self) -> DllStorageClass
fn clone(&self) -> DllStorageClass
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DllStorageClass
Source§impl Debug for DllStorageClass
impl Debug for DllStorageClass
Source§impl Default for DllStorageClass
impl Default for DllStorageClass
Source§fn default() -> DllStorageClass
fn default() -> DllStorageClass
Returns the “default value” for a type. Read more
impl Eq for DllStorageClass
Source§impl PartialEq for DllStorageClass
impl PartialEq for DllStorageClass
Source§fn eq(&self, other: &DllStorageClass) -> bool
fn eq(&self, other: &DllStorageClass) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DllStorageClass
Source§impl TryFrom<u8> for DllStorageClass
impl TryFrom<u8> for DllStorageClass
Source§type Error = TryFromPrimitiveError<DllStorageClass>
type Error = TryFromPrimitiveError<DllStorageClass>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for DllStorageClass
impl TryFromPrimitive for DllStorageClass
const NAME: &'static str = "DllStorageClass"
type Primitive = u8
type Error = TryFromPrimitiveError<DllStorageClass>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
Auto Trait Implementations§
impl Freeze for DllStorageClass
impl RefUnwindSafe for DllStorageClass
impl Send for DllStorageClass
impl Sync for DllStorageClass
impl Unpin for DllStorageClass
impl UnsafeUnpin 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