Struct rusty_doors::sys::DoorArg
source · #[repr(C)]pub struct DoorArg {
pub data_ptr: *mut c_char,
pub data_size: usize,
pub desc_ptr: *mut DoorDesc,
pub desc_num: c_uint,
pub rbuf: *mut c_char,
pub rsize: usize,
}Expand description
Structure used to pass/return to a door_call function.
Fields§
§data_ptr: *mut c_char§data_size: usize§desc_ptr: *mut DoorDesc§desc_num: c_uint§rbuf: *mut c_char§rsize: usizeAuto Trait Implementations§
impl Freeze for DoorArg
impl RefUnwindSafe for DoorArg
impl !Send for DoorArg
impl !Sync for DoorArg
impl Unpin for DoorArg
impl UnwindSafe for DoorArg
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