[][src]Struct _wasmtime::InstantiateResultObject

pub struct InstantiateResultObject { /* fields omitted */ }

Trait Implementations

impl IntoPyObject for InstantiateResultObject[src]

impl PyTypeInfo for InstantiateResultObject[src]

type Type = InstantiateResultObject

Type of objects to store in PyObject struct

type BaseType = PyAny

Base class

fn is_instance(object: &PyAny) -> bool[src]

Check if *mut ffi::PyObject is instance of this type

fn is_exact_instance(object: &PyAny) -> bool[src]

Check if *mut ffi::PyObject is exact instance of this type

impl PyMethodsInventoryDispatch for InstantiateResultObject[src]

type InventoryType = InstantiateResultObjectGeneratedPyo3Inventory

This allows us to get the inventory type when only the pyclass is in scope

impl PyObjectAlloc for InstantiateResultObject[src]

unsafe fn alloc(_py: Python) -> *mut PyObject[src]

unsafe fn dealloc(py: Python, obj: *mut PyObject)[src]

Calls the rust destructor for the object and frees the memory (usually by calling ptr->ob_type->tp_free). This function is used as tp_dealloc implementation. Read more

unsafe fn drop(py: Python, obj: *mut PyObject)[src]

Calls the rust destructor for the object.

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> PyTypeObject for T where
    T: PyTypeInfo + PyMethodsProtocol + PyObjectAlloc
[src]

fn type_object() -> Py<PyType>[src]

Returns the safe abstraction over the type object from [PyTypeObject::init_type]

impl<T> PyMethodsProtocol for T where
    T: PyMethodsInventoryDispatch, 
[src]

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

impl<T, U> IntoPy<U> for T where
    U: FromPy<T>, 
[src]

impl<'v, T> PyTryFrom<'v> for T where
    T: PyTypeInfo
[src]

impl<T> PyObjectAlloc for T where
    T: PyObjectWithFreeList
[src]

unsafe fn drop(py: Python, obj: *mut PyObject)[src]

Calls the rust destructor for the object.

impl<T> PyTypeCreate for T where
    T: PyObjectAlloc + PyTypeObject
[src]

#[must_use] fn create(py: Python) -> Result<PyRawObject, PyErr>[src]

Create PyRawObject which can be initialized with rust value

impl<T> Same<T> for T

type Output = T

Should always be Self