#[repr(C)]pub struct GOBJProc {
pub parent: *mut GOBJ,
pub next: *mut GOBJProc,
pub prev: *mut GOBJProc,
pub s_link: c_char,
pub flags: c_char,
pub parentGOBJ: *mut GOBJ,
pub cb: Option<unsafe extern "C" fn(gobj: *mut GOBJ)>,
}Fields§
§parent: *mut GOBJ§next: *mut GOBJProc§prev: *mut GOBJProc§s_link: c_char§flags: c_char§parentGOBJ: *mut GOBJ§cb: Option<unsafe extern "C" fn(gobj: *mut GOBJ)>Trait Implementations§
Auto Trait Implementations§
impl Freeze for GOBJProc
impl RefUnwindSafe for GOBJProc
impl !Send for GOBJProc
impl !Sync for GOBJProc
impl Unpin for GOBJProc
impl UnwindSafe for GOBJProc
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