Struct wasmer::LocalFunctionIndex 
source · pub struct LocalFunctionIndex(_);Expand description
Index type of a function defined locally inside the WebAssembly module.
Implementations
Trait Implementations
sourceimpl Archive for LocalFunctionIndexwhere
    u32: Archive,
 
impl Archive for LocalFunctionIndexwhere
    u32: Archive,
type Archived = LocalFunctionIndex
type Archived = LocalFunctionIndex
The archived representation of this type. Read more
type Resolver = LocalFunctionIndexResolver
type Resolver = LocalFunctionIndexResolver
The resolver for this type. It must contain all the additional information from serializing
needed to make the archived type from the normal type. Read more
sourceunsafe fn resolve(
    &self,
    pos: usize,
    resolver: <LocalFunctionIndex as Archive>::Resolver,
    out: *mut <LocalFunctionIndex as Archive>::Archived
)
 
unsafe fn resolve(
    &self,
    pos: usize,
    resolver: <LocalFunctionIndex as Archive>::Resolver,
    out: *mut <LocalFunctionIndex as Archive>::Archived
)
Creates the archived version of this value at the given position and writes it to the given
output. Read more
sourceimpl Clone for LocalFunctionIndex
 
impl Clone for LocalFunctionIndex
sourcefn clone(&self) -> LocalFunctionIndex
 
fn clone(&self) -> LocalFunctionIndex
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresourceimpl Debug for LocalFunctionIndex
 
impl Debug for LocalFunctionIndex
sourceimpl<__D> Deserialize<LocalFunctionIndex, __D> for <LocalFunctionIndex as Archive>::Archivedwhere
    __D: Fallible + ?Sized,
    u32: Archive,
    <u32 as Archive>::Archived: Deserialize<u32, __D>,
 
impl<__D> Deserialize<LocalFunctionIndex, __D> for <LocalFunctionIndex as Archive>::Archivedwhere
    __D: Fallible + ?Sized,
    u32: Archive,
    <u32 as Archive>::Archived: Deserialize<u32, __D>,
sourcefn deserialize(
    &self,
    deserializer: &mut __D
) -> Result<LocalFunctionIndex, <__D as Fallible>::Error>
 
fn deserialize(
    &self,
    deserializer: &mut __D
) -> Result<LocalFunctionIndex, <__D as Fallible>::Error>
Deserializes using the given deserializer
sourceimpl EntityRef for LocalFunctionIndex
 
impl EntityRef for LocalFunctionIndex
sourceimpl Hash for LocalFunctionIndex
 
impl Hash for LocalFunctionIndex
sourceimpl Ord for LocalFunctionIndex
 
impl Ord for LocalFunctionIndex
sourcefn cmp(&self, other: &LocalFunctionIndex) -> Ordering
 
fn cmp(&self, other: &LocalFunctionIndex) -> Ordering
1.21.0 · sourcefn 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
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn min(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
    Self: Sized + PartialOrd<Self>,
 
fn clamp(self, min: Self, max: Self) -> Selfwhere
    Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<LocalFunctionIndex> for LocalFunctionIndex
 
impl PartialEq<LocalFunctionIndex> for LocalFunctionIndex
sourcefn eq(&self, other: &LocalFunctionIndex) -> bool
 
fn eq(&self, other: &LocalFunctionIndex) -> bool
sourceimpl PartialOrd<LocalFunctionIndex> for LocalFunctionIndex
 
impl PartialOrd<LocalFunctionIndex> for LocalFunctionIndex
sourcefn partial_cmp(&self, other: &LocalFunctionIndex) -> Option<Ordering>
 
fn partial_cmp(&self, other: &LocalFunctionIndex) -> Option<Ordering>
1.0.0 · sourcefn 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 moresourceimpl ReservedValue for LocalFunctionIndex
 
impl ReservedValue for LocalFunctionIndex
sourcefn reserved_value() -> LocalFunctionIndex
 
fn reserved_value() -> LocalFunctionIndex
Create an instance of the reserved value.
sourcefn is_reserved_value(&self) -> bool
 
fn is_reserved_value(&self) -> bool
Checks whether value is the reserved one.
sourceimpl<__S> Serialize<__S> for LocalFunctionIndexwhere
    __S: Fallible + ?Sized,
    u32: Serialize<__S>,
 
impl<__S> Serialize<__S> for LocalFunctionIndexwhere
    __S: Fallible + ?Sized,
    u32: Serialize<__S>,
impl Copy for LocalFunctionIndex
impl Eq for LocalFunctionIndex
impl StructuralEq for LocalFunctionIndex
impl StructuralPartialEq for LocalFunctionIndex
Auto Trait Implementations
impl RefUnwindSafe for LocalFunctionIndex
impl Send for LocalFunctionIndex
impl Sync for LocalFunctionIndex
impl Unpin for LocalFunctionIndex
impl UnwindSafe for LocalFunctionIndex
Blanket Implementations
impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
fn pointer_metadata(
    _: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata(
    _: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
impl<T> ArchiveUnsized for Twhere
    T: Archive,
impl<T> ArchiveUnsized for Twhere
    T: Archive,
type Archived = <T as Archive>::Archived
type Archived = <T as Archive>::Archived
The archived counterpart of this type. Unlike 
Archive, it may be unsized. Read moretype MetadataResolver = ()
type MetadataResolver = ()
The resolver for the metadata of this type. Read more
unsafe fn resolve_metadata(
    &self,
    _: usize,
    _: <T as ArchiveUnsized>::MetadataResolver,
    _: *mut <<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata
)
unsafe fn resolve_metadata(
    &self,
    _: usize,
    _: <T as ArchiveUnsized>::MetadataResolver,
    _: *mut <<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata
)
Creates the archived version of the metadata for this value at the given position and writes
it to the given output. Read more
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere
    W: DeserializeWith<F, T, D>,
    D: Fallible + ?Sized,
    F: ?Sized,
impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere
    W: DeserializeWith<F, T, D>,
    D: Fallible + ?Sized,
    F: ?Sized,
fn deserialize(
    &self,
    deserializer: &mut D
) -> Result<With<T, W>, <D as Fallible>::Error>
fn deserialize(
    &self,
    deserializer: &mut D
) -> Result<With<T, W>, <D as Fallible>::Error>
Deserializes using the given deserializer
sourceimpl<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,
sourcefn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.sourceimpl<T> Instrument for T
 
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
impl<T> Pointable for T
impl<T> Pointable for T
impl<T, S> SerializeUnsized<S> for Twhere
    T: Serialize<S>,
    S: Serializer + ?Sized,
impl<T, S> SerializeUnsized<S> for Twhere
    T: Serialize<S>,
    S: Serializer + ?Sized,
fn serialize_unsized(
    &self,
    serializer: &mut S
) -> Result<usize, <S as Fallible>::Error>
fn serialize_unsized(
    &self,
    serializer: &mut S
) -> Result<usize, <S as Fallible>::Error>
Writes the object and returns the position of the archived type.
fn serialize_metadata(&self, _: &mut S) -> Result<(), <S as Fallible>::Error>
fn serialize_metadata(&self, _: &mut S) -> Result<(), <S as Fallible>::Error>
Serializes the metadata for the given type.
sourceimpl<T> Upcastable for Twhere
    T: 'static + Any + Send + Sync,
 
impl<T> Upcastable for Twhere
    T: 'static + Any + Send + Sync,
sourcefn upcast_any_ref(&self) -> &(dyn Any + 'static)
 
fn upcast_any_ref(&self) -> &(dyn Any + 'static)
upcast ref
sourcefn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
 
fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
upcast mut ref