Struct spring_ai_sys::SCallLuaUICommand
source · #[repr(C)]pub struct SCallLuaUICommand {
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 SCallLuaUICommand
impl Clone for SCallLuaUICommand
source§fn clone(&self) -> SCallLuaUICommand
fn clone(&self) -> SCallLuaUICommand
Returns a copy 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 SCallLuaUICommand
impl Debug for SCallLuaUICommand
impl Copy for SCallLuaUICommand
Auto Trait Implementations§
impl Freeze for SCallLuaUICommand
impl RefUnwindSafe for SCallLuaUICommand
impl !Send for SCallLuaUICommand
impl !Sync for SCallLuaUICommand
impl Unpin for SCallLuaUICommand
impl UnwindSafe for SCallLuaUICommand
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