pub enum FuncOrDataId {
Func(FuncId),
Data(DataId),
}
Expand description
A declared name may refer to either a function or data declaration
Variants§
Trait Implementations§
Source§impl Clone for FuncOrDataId
impl Clone for FuncOrDataId
Source§fn clone(&self) -> FuncOrDataId
fn clone(&self) -> FuncOrDataId
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 FuncOrDataId
impl Debug for FuncOrDataId
Source§impl From<FuncOrDataId> for ModuleRelocTarget
Mapping to ModuleExtName
is trivial based on the FuncId
and DataId
mapping.
impl From<FuncOrDataId> for ModuleRelocTarget
Mapping to ModuleExtName
is trivial based on the FuncId
and DataId
mapping.
Source§fn from(id: FuncOrDataId) -> Self
fn from(id: FuncOrDataId) -> Self
Converts to this type from the input type.
Source§impl Hash for FuncOrDataId
impl Hash for FuncOrDataId
Source§impl Ord for FuncOrDataId
impl Ord for FuncOrDataId
Source§fn cmp(&self, other: &FuncOrDataId) -> Ordering
fn cmp(&self, other: &FuncOrDataId) -> 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 FuncOrDataId
impl PartialEq for FuncOrDataId
Source§impl PartialOrd for FuncOrDataId
impl PartialOrd for FuncOrDataId
impl Copy for FuncOrDataId
impl Eq for FuncOrDataId
impl StructuralPartialEq for FuncOrDataId
Auto Trait Implementations§
impl Freeze for FuncOrDataId
impl RefUnwindSafe for FuncOrDataId
impl Send for FuncOrDataId
impl Sync for FuncOrDataId
impl Unpin for FuncOrDataId
impl UnwindSafe for FuncOrDataId
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,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.