Struct jlrs::value::method_instance::MethodInstance[][src]

#[repr(transparent)]pub struct MethodInstance<'frame>(_, _);

This type is a placeholder to cache data for a specType signature specialization of a Method can can be used as a unique dictionary key representation of a call to a particular Method with a particular set of argument types

Implementations

impl<'frame> MethodInstance<'frame>[src]

pub fn def(self) -> Value<'frame, 'static>[src]

Context for this code

pub fn spec_types(self) -> Value<'frame, 'static>[src]

pub fn sparam_vals(self) -> SimpleVector<'frame>[src]

pub fn uninferred(self) -> Value<'frame, 'static>[src]

pub fn backedges(self) -> Array<'frame, 'static>[src]

List of method-instances which contain a call into this method-instance

pub fn cache(self) -> CodeInstance<'frame>[src]

The cache field.

pub fn in_inference(self) -> u8[src]

Flags to tell if inference is running on this object

pub fn as_value(self) -> Value<'frame, 'static>[src]

Convert self to a Value.

Trait Implementations

impl<'frame, 'data> Cast<'frame, 'data> for MethodInstance<'frame>[src]

type Output = Self

impl<'frame> Clone for MethodInstance<'frame>[src]

impl<'frame> Copy for MethodInstance<'frame>[src]

impl<'frame> Eq for MethodInstance<'frame>[src]

impl<'frame> Hash for MethodInstance<'frame>[src]

impl<'frame> Into<Value<'frame, 'static>> for MethodInstance<'frame>[src]

impl<'frame> JuliaType for MethodInstance<'frame>[src]

impl<'frame> JuliaTypecheck for MethodInstance<'frame>[src]

impl<'frame> PartialEq<MethodInstance<'frame>> for MethodInstance<'frame>[src]

impl<'frame> StructuralEq for MethodInstance<'frame>[src]

impl<'frame> StructuralPartialEq for MethodInstance<'frame>[src]

impl<'frame> ValidLayout for MethodInstance<'frame>[src]

Auto Trait Implementations

impl<'frame> RefUnwindSafe for MethodInstance<'frame>[src]

impl<'frame> !Send for MethodInstance<'frame>[src]

impl<'frame> !Sync for MethodInstance<'frame>[src]

impl<'frame> Unpin for MethodInstance<'frame>[src]

impl<'frame> UnwindSafe for MethodInstance<'frame>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.