[][src]Struct jlrs::value::method_table::MethodTable

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

contains the TypeMap for one Type

Implementations

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

pub fn name(self) -> Symbol<'frame>[src]

Sometimes a hack used by serialization to handle kwsorter

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

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

pub fn max_args(self) -> isize[src]

Max # of non-vararg arguments in a signature

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

Keyword argument sorter function

pub fn module(self) -> Module<'frame>[src]

Used for incremental serialization to locate original binding

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

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

0, or 1 to skip splitting typemap on first (function) argument

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

Trait Implementations

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

type Output = Self

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

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

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

impl<'frame> RefUnwindSafe for MethodTable<'frame>

impl<'frame> !Send for MethodTable<'frame>

impl<'frame> !Sync for MethodTable<'frame>

impl<'frame> Unpin for MethodTable<'frame>

impl<'frame> UnwindSafe for MethodTable<'frame>

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.