#[repr(C)]pub struct ZL_RefParam {
pub paramId: c_int,
pub paramRef: *const c_void,
pub paramSize: usize,
}Fields§
§paramId: c_int§paramRef: *const c_void§paramSize: usizeOptionally the size of the referenced object. OpenZL does not interpret this value. A common pattern is to use the value 0 to mean unknown size.
Trait Implementations§
Source§impl Clone for ZL_RefParam
impl Clone for ZL_RefParam
Source§fn clone(&self) -> ZL_RefParam
fn clone(&self) -> ZL_RefParam
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 ZL_RefParam
impl Debug for ZL_RefParam
impl Copy for ZL_RefParam
Auto Trait Implementations§
impl Freeze for ZL_RefParam
impl RefUnwindSafe for ZL_RefParam
impl !Send for ZL_RefParam
impl !Sync for ZL_RefParam
impl Unpin for ZL_RefParam
impl UnwindSafe for ZL_RefParam
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