Struct evil_janet::JanetAbstractType

source ·
#[repr(C)]
pub struct JanetAbstractType {
Show 14 fields pub name: *const c_char, pub gc: Option<unsafe extern "C" fn(data: *mut c_void, len: usize) -> c_int>, pub gcmark: Option<unsafe extern "C" fn(data: *mut c_void, len: usize) -> c_int>, pub get: Option<unsafe extern "C" fn(data: *mut c_void, key: Janet, out: *mut Janet) -> c_int>, pub put: Option<unsafe extern "C" fn(data: *mut c_void, key: Janet, value: Janet)>, pub marshal: Option<unsafe extern "C" fn(p: *mut c_void, ctx: *mut JanetMarshalContext)>, pub unmarshal: Option<unsafe extern "C" fn(ctx: *mut JanetMarshalContext) -> *mut c_void>, pub tostring: Option<unsafe extern "C" fn(p: *mut c_void, buffer: *mut JanetBuffer)>, pub compare: Option<unsafe extern "C" fn(lhs: *mut c_void, rhs: *mut c_void) -> c_int>, pub hash: Option<unsafe extern "C" fn(p: *mut c_void, len: usize) -> i32>, pub next: Option<unsafe extern "C" fn(p: *mut c_void, key: Janet) -> Janet>, pub call: Option<unsafe extern "C" fn(p: *mut c_void, argc: i32, argv: *mut Janet) -> Janet>, pub length: Option<unsafe extern "C" fn(p: *mut c_void, len: usize) -> usize>, pub bytes: Option<unsafe extern "C" fn(p: *mut c_void, len: usize) -> JanetByteView>,
}

Fields§

§name: *const c_char§gc: Option<unsafe extern "C" fn(data: *mut c_void, len: usize) -> c_int>§gcmark: Option<unsafe extern "C" fn(data: *mut c_void, len: usize) -> c_int>§get: Option<unsafe extern "C" fn(data: *mut c_void, key: Janet, out: *mut Janet) -> c_int>§put: Option<unsafe extern "C" fn(data: *mut c_void, key: Janet, value: Janet)>§marshal: Option<unsafe extern "C" fn(p: *mut c_void, ctx: *mut JanetMarshalContext)>§unmarshal: Option<unsafe extern "C" fn(ctx: *mut JanetMarshalContext) -> *mut c_void>§tostring: Option<unsafe extern "C" fn(p: *mut c_void, buffer: *mut JanetBuffer)>§compare: Option<unsafe extern "C" fn(lhs: *mut c_void, rhs: *mut c_void) -> c_int>§hash: Option<unsafe extern "C" fn(p: *mut c_void, len: usize) -> i32>§next: Option<unsafe extern "C" fn(p: *mut c_void, key: Janet) -> Janet>§call: Option<unsafe extern "C" fn(p: *mut c_void, argc: i32, argv: *mut Janet) -> Janet>§length: Option<unsafe extern "C" fn(p: *mut c_void, len: usize) -> usize>§bytes: Option<unsafe extern "C" fn(p: *mut c_void, len: usize) -> JanetByteView>

Trait Implementations§

source§

impl Clone for JanetAbstractType

source§

fn clone(&self) -> JanetAbstractType

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for JanetAbstractType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for JanetAbstractType

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.