#[repr(C)]pub struct starpu_codelet_pack_arg_data {
pub arg_buffer: *mut c_char,
pub arg_buffer_size: usize,
pub arg_buffer_used: usize,
pub current_offset: usize,
pub nargs: c_int,
}Expand description
Structure to be used for starpu_codelet_pack_arg_init() & co, and starpu_codelet_unpack_arg_init() & co. The contents is public, however users should not directly access it, but only use as a parameter to the appropriate functions.
Fields§
§arg_buffer: *mut c_char§arg_buffer_size: usize§arg_buffer_used: usize§current_offset: usize§nargs: c_intTrait Implementations§
Source§impl Clone for starpu_codelet_pack_arg_data
impl Clone for starpu_codelet_pack_arg_data
Source§fn clone(&self) -> starpu_codelet_pack_arg_data
fn clone(&self) -> starpu_codelet_pack_arg_data
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for starpu_codelet_pack_arg_data
impl Debug for starpu_codelet_pack_arg_data
impl Copy for starpu_codelet_pack_arg_data
Auto Trait Implementations§
impl Freeze for starpu_codelet_pack_arg_data
impl RefUnwindSafe for starpu_codelet_pack_arg_data
impl !Send for starpu_codelet_pack_arg_data
impl !Sync for starpu_codelet_pack_arg_data
impl Unpin for starpu_codelet_pack_arg_data
impl UnwindSafe for starpu_codelet_pack_arg_data
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