#[repr(C)]pub struct VariablesExportItem {
pub item_is_valid: u8,
pub proposed_is_set: u8,
pub current: *const c_char,
pub proposed: *const c_char,
}Expand description
Some structs to handle variables in callbacks
Fields§
§item_is_valid: u8Whether or not there is any data in this item. Ignore this item if this is 0.
proposed_is_set: u8The value in proposed is set. If 0 ignore proposed
current: *const c_charCurrent value (stored in memory)
proposed: *const c_charNew value to change to (const, so no updates please)
Auto Trait Implementations§
impl Freeze for VariablesExportItem
impl RefUnwindSafe for VariablesExportItem
impl !Send for VariablesExportItem
impl !Sync for VariablesExportItem
impl Unpin for VariablesExportItem
impl UnwindSafe for VariablesExportItem
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