#[repr(C)]pub struct PL_blob_t {Show 15 fields
pub magic: usize,
pub flags: usize,
pub name: *const c_char,
pub release: Option<unsafe extern "C" fn(a: atom_t) -> c_int>,
pub compare: Option<unsafe extern "C" fn(a: atom_t, b: atom_t) -> c_int>,
pub write: Option<unsafe extern "C" fn(s: *mut IOSTREAM, a: atom_t, flags: c_int) -> c_int>,
pub acquire: Option<unsafe extern "C" fn(a: atom_t)>,
pub save: Option<unsafe extern "C" fn(a: atom_t, s: *mut IOSTREAM) -> c_int>,
pub load: Option<unsafe extern "C" fn(s: *mut IOSTREAM) -> atom_t>,
pub padding: usize,
pub reserved: [*mut c_void; 9],
pub registered: c_int,
pub rank: c_int,
pub next: *mut PL_blob_t,
pub atom_name: atom_t,
}
Fields§
§magic: usize
§flags: usize
§name: *const c_char
§release: Option<unsafe extern "C" fn(a: atom_t) -> c_int>
§compare: Option<unsafe extern "C" fn(a: atom_t, b: atom_t) -> c_int>
§write: Option<unsafe extern "C" fn(s: *mut IOSTREAM, a: atom_t, flags: c_int) -> c_int>
§acquire: Option<unsafe extern "C" fn(a: atom_t)>
§save: Option<unsafe extern "C" fn(a: atom_t, s: *mut IOSTREAM) -> c_int>
§load: Option<unsafe extern "C" fn(s: *mut IOSTREAM) -> atom_t>
§padding: usize
§reserved: [*mut c_void; 9]
§registered: c_int
§rank: c_int
§next: *mut PL_blob_t
§atom_name: atom_t
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for PL_blob_t
impl !Send for PL_blob_t
impl !Sync for PL_blob_t
impl Unpin for PL_blob_t
impl UnwindSafe for PL_blob_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