#[repr(C)]pub struct _jvmtiMonitorUsage {
pub owner: jthread,
pub entry_count: jint,
pub waiter_count: jint,
pub waiters: *mut jthread,
pub notify_waiter_count: jint,
pub notify_waiters: *mut jthread,
}
Fields§
§owner: jthread
§entry_count: jint
§waiter_count: jint
§waiters: *mut jthread
§notify_waiter_count: jint
§notify_waiters: *mut jthread
Trait Implementations§
Source§impl Clone for _jvmtiMonitorUsage
impl Clone for _jvmtiMonitorUsage
Source§fn clone(&self) -> _jvmtiMonitorUsage
fn clone(&self) -> _jvmtiMonitorUsage
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 _jvmtiMonitorUsage
impl Debug for _jvmtiMonitorUsage
impl Copy for _jvmtiMonitorUsage
Auto Trait Implementations§
impl Freeze for _jvmtiMonitorUsage
impl RefUnwindSafe for _jvmtiMonitorUsage
impl !Send for _jvmtiMonitorUsage
impl !Sync for _jvmtiMonitorUsage
impl Unpin for _jvmtiMonitorUsage
impl UnwindSafe for _jvmtiMonitorUsage
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