#[repr(C)]pub struct _dr_vg_client_request_t {
pub request: ptr_uint_t,
pub args: [ptr_uint_t; 5],
pub default_result: ptr_uint_t,
}Expand description
Defines the Valgrind client request object, which is constructed by each instance of a Valgrind annotation in the target app. An instance is passed to Valgrind annotation callback functions to make the arguments available. Some arguments may be undefined for some Valgrind client requests; see the Valgrind documentation for each specific Valgrind client request for details about the arguments.
Fields§
§request: ptr_uint_t§args: [ptr_uint_t; 5]§default_result: ptr_uint_tTrait Implementations§
Source§impl Clone for _dr_vg_client_request_t
impl Clone for _dr_vg_client_request_t
Source§fn clone(&self) -> _dr_vg_client_request_t
fn clone(&self) -> _dr_vg_client_request_t
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 _dr_vg_client_request_t
impl Debug for _dr_vg_client_request_t
impl Copy for _dr_vg_client_request_t
Auto Trait Implementations§
impl Freeze for _dr_vg_client_request_t
impl RefUnwindSafe for _dr_vg_client_request_t
impl Send for _dr_vg_client_request_t
impl Sync for _dr_vg_client_request_t
impl Unpin for _dr_vg_client_request_t
impl UnsafeUnpin for _dr_vg_client_request_t
impl UnwindSafe for _dr_vg_client_request_t
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more