#[repr(C)]pub struct hipMemsetParams {
pub dst: *mut c_void,
pub elementSize: c_uint,
pub height: usize,
pub pitch: usize,
pub value: c_uint,
pub width: usize,
}
Fields§
§dst: *mut c_void
§elementSize: c_uint
§height: usize
§pitch: usize
§value: c_uint
§width: usize
Trait Implementations§
Source§impl Clone for hipMemsetParams
impl Clone for hipMemsetParams
Source§fn clone(&self) -> hipMemsetParams
fn clone(&self) -> hipMemsetParams
Returns a copy 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 hipMemsetParams
impl Debug for hipMemsetParams
impl Copy for hipMemsetParams
Auto Trait Implementations§
impl Freeze for hipMemsetParams
impl RefUnwindSafe for hipMemsetParams
impl !Send for hipMemsetParams
impl !Sync for hipMemsetParams
impl Unpin for hipMemsetParams
impl UnwindSafe for hipMemsetParams
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