#[repr(C)]pub struct r_lang_plugin_t {Show 14 fields
pub name: *const c_char,
pub alias: *const c_char,
pub desc: *const c_char,
pub example: *const c_char,
pub license: *const c_char,
pub help: *mut *const c_char,
pub ext: *const c_char,
pub init: Option<unsafe extern "C" fn(user: *mut RLang) -> bool>,
pub setup: Option<unsafe extern "C" fn(user: *mut RLang) -> bool>,
pub fini: Option<unsafe extern "C" fn(user: *mut RLang) -> bool>,
pub prompt: Option<unsafe extern "C" fn(user: *mut RLang) -> bool>,
pub run: Option<unsafe extern "C" fn(user: *mut RLang, code: *const c_char, len: c_int) -> bool>,
pub run_file: Option<unsafe extern "C" fn(user: *mut RLang, file: *const c_char) -> bool>,
pub set_argv: Option<unsafe extern "C" fn(user: *mut RLang, argc: c_int, argv: *mut *mut c_char) -> c_int>,
}
Fields§
§name: *const c_char
§alias: *const c_char
§desc: *const c_char
§example: *const c_char
§license: *const c_char
§help: *mut *const c_char
§ext: *const c_char
§init: Option<unsafe extern "C" fn(user: *mut RLang) -> bool>
§setup: Option<unsafe extern "C" fn(user: *mut RLang) -> bool>
§fini: Option<unsafe extern "C" fn(user: *mut RLang) -> bool>
§prompt: Option<unsafe extern "C" fn(user: *mut RLang) -> bool>
§run: Option<unsafe extern "C" fn(user: *mut RLang, code: *const c_char, len: c_int) -> bool>
§run_file: Option<unsafe extern "C" fn(user: *mut RLang, file: *const c_char) -> bool>
§set_argv: Option<unsafe extern "C" fn(user: *mut RLang, argc: c_int, argv: *mut *mut c_char) -> c_int>
Trait Implementations§
Source§impl Clone for r_lang_plugin_t
impl Clone for r_lang_plugin_t
Source§fn clone(&self) -> r_lang_plugin_t
fn clone(&self) -> r_lang_plugin_t
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for r_lang_plugin_t
impl Debug for r_lang_plugin_t
impl Copy for r_lang_plugin_t
Auto Trait Implementations§
impl Freeze for r_lang_plugin_t
impl RefUnwindSafe for r_lang_plugin_t
impl !Send for r_lang_plugin_t
impl !Sync for r_lang_plugin_t
impl Unpin for r_lang_plugin_t
impl UnwindSafe for r_lang_plugin_t
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more