pub struct RutabagaHandle {
pub os_handle: SafeDescriptor,
pub handle_type: u32,
}
Expand description
Handle to OS-specific memory or synchronization objects.
Fields§
§os_handle: SafeDescriptor
§handle_type: u32
Implementations§
Source§impl RutabagaHandle
impl RutabagaHandle
Sourcepub fn try_clone(&self) -> RutabagaResult<RutabagaHandle>
pub fn try_clone(&self) -> RutabagaResult<RutabagaHandle>
Clones an existing rutabaga handle, by using OS specific mechanisms.
Auto Trait Implementations§
impl Freeze for RutabagaHandle
impl RefUnwindSafe for RutabagaHandle
impl Send for RutabagaHandle
impl Sync for RutabagaHandle
impl Unpin for RutabagaHandle
impl UnwindSafe for RutabagaHandle
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