#[repr(C)]pub struct SCallLuaRulesCommand {
pub inData: *const c_char,
pub inSize: c_int,
pub ret_outData: *mut c_char,
}
Fields§
§inData: *const c_char
Can be set to NULL to skip passing in a string
inSize: c_int
If this is less than 0, the data size is calculated using strlen()
ret_outData: *mut c_char
Buffer for response, must be const size of MAX_RESPONSE_SIZE bytes
Trait Implementations§
Source§impl Clone for SCallLuaRulesCommand
impl Clone for SCallLuaRulesCommand
Source§fn clone(&self) -> SCallLuaRulesCommand
fn clone(&self) -> SCallLuaRulesCommand
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 SCallLuaRulesCommand
impl Debug for SCallLuaRulesCommand
impl Copy for SCallLuaRulesCommand
Auto Trait Implementations§
impl Freeze for SCallLuaRulesCommand
impl RefUnwindSafe for SCallLuaRulesCommand
impl !Send for SCallLuaRulesCommand
impl !Sync for SCallLuaRulesCommand
impl Unpin for SCallLuaRulesCommand
impl UnwindSafe for SCallLuaRulesCommand
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