[][src]Struct guile_sys::scm_smob_descriptor

#[repr(C)]
pub struct scm_smob_descriptor { pub name: *const c_char, pub size: usize, pub mark: Option<unsafe extern "C" fn(arg1: SCM) -> SCM>, pub free: Option<unsafe extern "C" fn(arg1: SCM) -> usize>, pub print: Option<unsafe extern "C" fn(exp: SCM, port: SCM, pstate: *mut scm_print_state) -> c_int>, pub equalp: Option<unsafe extern "C" fn(arg1: SCM, arg2: SCM) -> SCM>, pub apply: scm_t_subr, pub apply_trampoline: SCM, }

Fields

name: *const c_charsize: usizemark: Option<unsafe extern "C" fn(arg1: SCM) -> SCM>free: Option<unsafe extern "C" fn(arg1: SCM) -> usize>print: Option<unsafe extern "C" fn(exp: SCM, port: SCM, pstate: *mut scm_print_state) -> c_int>equalp: Option<unsafe extern "C" fn(arg1: SCM, arg2: SCM) -> SCM>apply: scm_t_subrapply_trampoline: SCM

Trait Implementations

impl Copy for scm_smob_descriptor[src]

impl Clone for scm_smob_descriptor[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for scm_smob_descriptor[src]

Auto Trait Implementations

impl !Send for scm_smob_descriptor

impl !Sync for scm_smob_descriptor

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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