Struct bytecode_interpreter::shared::ident::FunctionIdent
source · pub struct FunctionIdent {
pub module: ModuleIdent,
pub name: String,
pub variant: FunctionVariant,
}
Fields§
§module: ModuleIdent
§name: String
§variant: FunctionVariant
Implementations§
source§impl FunctionIdent
impl FunctionIdent
Trait Implementations§
source§impl Clone for FunctionIdent
impl Clone for FunctionIdent
source§fn clone(&self) -> FunctionIdent
fn clone(&self) -> FunctionIdent
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 FunctionIdent
impl Debug for FunctionIdent
source§impl Display for FunctionIdent
impl Display for FunctionIdent
source§impl Ord for FunctionIdent
impl Ord for FunctionIdent
source§fn cmp(&self, other: &FunctionIdent) -> Ordering
fn cmp(&self, other: &FunctionIdent) -> 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<FunctionIdent> for FunctionIdent
impl PartialEq<FunctionIdent> for FunctionIdent
source§fn eq(&self, other: &FunctionIdent) -> bool
fn eq(&self, other: &FunctionIdent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<FunctionIdent> for FunctionIdent
impl PartialOrd<FunctionIdent> for FunctionIdent
source§fn partial_cmp(&self, other: &FunctionIdent) -> Option<Ordering>
fn partial_cmp(&self, other: &FunctionIdent) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for FunctionIdent
impl StructuralEq for FunctionIdent
impl StructuralPartialEq for FunctionIdent
Auto Trait Implementations§
impl RefUnwindSafe for FunctionIdent
impl Send for FunctionIdent
impl Sync for FunctionIdent
impl Unpin for FunctionIdent
impl UnwindSafe for FunctionIdent
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.