#[repr(C)]pub union ss_plugin_state_data {
pub s8: i8,
pub s16: i16,
pub s32: i32,
pub s64: i64,
pub u8_: u8,
pub u16_: u16,
pub u32_: u32,
pub u64_: u64,
pub str_: *const c_char,
pub b: ss_plugin_bool,
pub table: *mut ss_plugin_table_t,
}Fields§
§s8: i8§s16: i16§s32: i32§s64: i64§u8_: u8§u16_: u16§u32_: u32§u64_: u64§str_: *const c_char§b: ss_plugin_bool§table: *mut ss_plugin_table_tTrait Implementations§
Source§impl Clone for ss_plugin_state_data
impl Clone for ss_plugin_state_data
Source§fn clone(&self) -> ss_plugin_state_data
fn clone(&self) -> ss_plugin_state_data
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 moreimpl Copy for ss_plugin_state_data
Auto Trait Implementations§
impl Freeze for ss_plugin_state_data
impl RefUnwindSafe for ss_plugin_state_data
impl !Send for ss_plugin_state_data
impl !Sync for ss_plugin_state_data
impl Unpin for ss_plugin_state_data
impl UnwindSafe for ss_plugin_state_data
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