Struct NativeHandleLeak
pub struct NativeHandleLeak {
pub type_name: &'static str,
pub id: u64,
}Expand description
A native handle a destructor attempted to destroy and could not. The handle stays live.
Fields§
§type_name: &'static strThe native type name, such as mln_map.
id: u64The handle id that was not destroyed.
Trait Implementations§
§impl Clone for NativeHandleLeak
impl Clone for NativeHandleLeak
§fn clone(&self) -> NativeHandleLeak
fn clone(&self) -> NativeHandleLeak
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 more§impl Debug for NativeHandleLeak
impl Debug for NativeHandleLeak
§impl PartialEq for NativeHandleLeak
impl PartialEq for NativeHandleLeak
impl Copy for NativeHandleLeak
impl Eq for NativeHandleLeak
impl StructuralPartialEq for NativeHandleLeak
Auto Trait Implementations§
impl Freeze for NativeHandleLeak
impl RefUnwindSafe for NativeHandleLeak
impl Send for NativeHandleLeak
impl Sync for NativeHandleLeak
impl Unpin for NativeHandleLeak
impl UnsafeUnpin for NativeHandleLeak
impl UnwindSafe for NativeHandleLeak
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