#[repr(C)]
pub struct _jl_method_t {
Show 31 fields pub name: *mut jl_sym_t, pub module: *mut _jl_module_t, pub file: *mut jl_sym_t, pub line: i32, pub primary_world: usize, pub deleted_world: usize, pub sig: *mut jl_value_t, pub specializations: AtomicPtr<jl_value_t>, pub speckeyset: AtomicPtr<jl_array_t>, pub slot_syms: *mut jl_value_t, pub external_mt: *mut jl_value_t, pub source: *mut jl_value_t, pub unspecialized: AtomicPtr<jl_method_instance_t>, pub generator: *mut jl_value_t, pub roots: *mut jl_array_t, pub root_blocks: *mut jl_array_t, pub nroots_sysimg: i32, pub ccallable: *mut jl_svec_t, pub invokes: AtomicPtr<jl_typemap_t>, pub recursion_relation: *mut jl_value_t, pub nargs: u32, pub called: u32, pub nospecialize: u32, pub nkw: u32, pub isva: u8, pub is_for_opaque_closure: u8, pub nospecializeinfer: u8, pub constprop: u8, pub max_varargs: u8, pub purity: _jl_purity_overrides_t, pub writelock: jl_mutex_t,
}

Fields§

§name: *mut jl_sym_t§module: *mut _jl_module_t§file: *mut jl_sym_t§line: i32§primary_world: usize§deleted_world: usize§sig: *mut jl_value_t§specializations: AtomicPtr<jl_value_t>§speckeyset: AtomicPtr<jl_array_t>§slot_syms: *mut jl_value_t§external_mt: *mut jl_value_t§source: *mut jl_value_t§unspecialized: AtomicPtr<jl_method_instance_t>§generator: *mut jl_value_t§roots: *mut jl_array_t§root_blocks: *mut jl_array_t§nroots_sysimg: i32§ccallable: *mut jl_svec_t§invokes: AtomicPtr<jl_typemap_t>§recursion_relation: *mut jl_value_t§nargs: u32§called: u32§nospecialize: u32§nkw: u32§isva: u8§is_for_opaque_closure: u8§nospecializeinfer: u8§constprop: u8§max_varargs: u8§purity: _jl_purity_overrides_t§writelock: jl_mutex_t

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.