#[repr(C)]pub struct rc_runtime_t {
pub triggers: *mut rc_runtime_trigger_t,
pub trigger_count: u32,
pub trigger_capacity: u32,
pub lboards: *mut rc_runtime_lboard_t,
pub lboard_count: u32,
pub lboard_capacity: u32,
pub richpresence: *mut rc_runtime_richpresence_t,
pub memrefs: *mut rc_memref_t,
pub next_memref: *mut *mut rc_memref_t,
pub variables: *mut rc_value_t,
pub next_variable: *mut *mut rc_value_t,
pub owns_self: u8,
}Fields§
§triggers: *mut rc_runtime_trigger_t§trigger_count: u32§trigger_capacity: u32§lboards: *mut rc_runtime_lboard_t§lboard_count: u32§lboard_capacity: u32§richpresence: *mut rc_runtime_richpresence_t§memrefs: *mut rc_memref_t§next_memref: *mut *mut rc_memref_t§variables: *mut rc_value_t§next_variable: *mut *mut rc_value_t§owns_self: u8Trait Implementations§
Source§impl Clone for rc_runtime_t
impl Clone for rc_runtime_t
Source§fn clone(&self) -> rc_runtime_t
fn clone(&self) -> rc_runtime_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 rc_runtime_t
impl Debug for rc_runtime_t
impl Copy for rc_runtime_t
Auto Trait Implementations§
impl Freeze for rc_runtime_t
impl RefUnwindSafe for rc_runtime_t
impl !Send for rc_runtime_t
impl !Sync for rc_runtime_t
impl Unpin for rc_runtime_t
impl UnwindSafe for rc_runtime_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