#[repr(u32)]pub enum LinkageType {
Export = 0,
Import = 1,
}Variants§
Implementations§
Source§impl LinkageType
impl LinkageType
pub fn from(val: u32) -> Option<LinkageType>
Trait Implementations§
Source§impl Clone for LinkageType
impl Clone for LinkageType
Source§fn clone(&self) -> LinkageType
fn clone(&self) -> LinkageType
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 LinkageType
Source§impl Debug for LinkageType
impl Debug for LinkageType
Source§impl Hash for LinkageType
impl Hash for LinkageType
Source§impl PartialEq for LinkageType
impl PartialEq for LinkageType
Source§fn eq(&self, other: &LinkageType) -> bool
fn eq(&self, other: &LinkageType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LinkageType
Auto Trait Implementations§
impl Freeze for LinkageType
impl RefUnwindSafe for LinkageType
impl Send for LinkageType
impl Sync for LinkageType
impl Unpin for LinkageType
impl UnsafeUnpin for LinkageType
impl UnwindSafe for LinkageType
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