#[repr(u32)]pub enum FuncLinkage {
Static = 0,
Global = 1,
Extern = 2,
Unknown = 3,
}Variants§
Trait Implementations§
Source§impl Clone for FuncLinkage
impl Clone for FuncLinkage
Source§fn clone(&self) -> FuncLinkage
fn clone(&self) -> FuncLinkage
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 moreSource§impl Debug for FuncLinkage
impl Debug for FuncLinkage
impl Eq for FuncLinkage
Source§impl From<u32> for FuncLinkage
impl From<u32> for FuncLinkage
Source§impl PartialEq for FuncLinkage
impl PartialEq for FuncLinkage
Source§fn eq(&self, other: &FuncLinkage) -> bool
fn eq(&self, other: &FuncLinkage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FuncLinkage
Auto Trait Implementations§
impl Freeze for FuncLinkage
impl RefUnwindSafe for FuncLinkage
impl Send for FuncLinkage
impl Sync for FuncLinkage
impl Unpin for FuncLinkage
impl UnsafeUnpin for FuncLinkage
impl UnwindSafe for FuncLinkage
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