#[repr(C)]
pub struct cl_mutable_dispatch_config_khr {
Show 13 fields pub t_type: cl_command_buffer_structure_type_khr, pub next: *const c_void, pub command: cl_mutable_command_khr, pub num_args: cl_uint, pub num_svm_args: cl_uint, pub num_exec_infos: cl_uint, pub work_dim: cl_uint, pub arg_list: *const cl_mutable_dispatch_arg_khr, pub arg_svm_list: *const cl_mutable_dispatch_arg_khr, pub exec_info_list: *const cl_mutable_dispatch_exec_info_khr, pub global_work_offset: *const size_t, pub global_work_size: *const size_t, pub local_work_size: *const size_t,
}

Fields§

§t_type: cl_command_buffer_structure_type_khr§next: *const c_void§command: cl_mutable_command_khr§num_args: cl_uint§num_svm_args: cl_uint§num_exec_infos: cl_uint§work_dim: cl_uint§arg_list: *const cl_mutable_dispatch_arg_khr§arg_svm_list: *const cl_mutable_dispatch_arg_khr§exec_info_list: *const cl_mutable_dispatch_exec_info_khr§global_work_offset: *const size_t§global_work_size: *const size_t§local_work_size: *const size_t

Trait Implementations§

source§

impl Clone for cl_mutable_dispatch_config_khr

source§

fn clone(&self) -> cl_mutable_dispatch_config_khr

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for cl_mutable_dispatch_config_khr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for cl_mutable_dispatch_config_khr

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.