#[repr(C)]pub struct SPDict {
pub name: *const i8,
pub value: *const i8,
pub next: *mut SPDict,
pub prev: *mut SPDict,
}Expand description
C ABI compatiable struct for storing data
Fields§
§name: *const i8name
value: *const i8value
next: *mut SPDictptr to the next obj
prev: *mut SPDictptr to the prev obj
Auto Trait Implementations§
impl Freeze for SPDict
impl RefUnwindSafe for SPDict
impl !Send for SPDict
impl !Sync for SPDict
impl Unpin for SPDict
impl UnwindSafe for SPDict
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