[][src]Struct guile_sys::scm_t_rng

#[repr(C)]
pub struct scm_t_rng { pub rstate_size: usize, pub random_bits: Option<unsafe extern "C" fn(state: *mut scm_t_rstate) -> scm_t_uint32>, pub init_rstate: Option<unsafe extern "C" fn(state: *mut scm_t_rstate, seed: *const c_char, n: c_int)>, pub copy_rstate: Option<unsafe extern "C" fn(state: *mut scm_t_rstate) -> *mut scm_t_rstate>, pub from_datum: Option<unsafe extern "C" fn(state: *mut scm_t_rstate, datum: SCM)>, pub to_datum: Option<unsafe extern "C" fn(state: *mut scm_t_rstate) -> SCM>, }

Fields

rstate_size: usizerandom_bits: Option<unsafe extern "C" fn(state: *mut scm_t_rstate) -> scm_t_uint32>init_rstate: Option<unsafe extern "C" fn(state: *mut scm_t_rstate, seed: *const c_char, n: c_int)>copy_rstate: Option<unsafe extern "C" fn(state: *mut scm_t_rstate) -> *mut scm_t_rstate>from_datum: Option<unsafe extern "C" fn(state: *mut scm_t_rstate, datum: SCM)>to_datum: Option<unsafe extern "C" fn(state: *mut scm_t_rstate) -> SCM>

Trait Implementations

impl Copy for scm_t_rng[src]

impl Clone for scm_t_rng[src]

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

Performs copy-assignment from source. Read more

impl Debug for scm_t_rng[src]

Auto Trait Implementations

impl Send for scm_t_rng

impl Sync for scm_t_rng

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]