pub(crate) struct ZirconParentDriver {
pub(crate) node: Node,
}
Expand description
The implementation of our driver will live in this object, which implements [Driver
].
Fields§
§node: Node
The [NodeProxy
] is our handle to the node we bound to. We need to keep this handle
open to keep the node around.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ZirconParentDriver
impl !RefUnwindSafe for ZirconParentDriver
impl Send for ZirconParentDriver
impl Sync for ZirconParentDriver
impl Unpin for ZirconParentDriver
impl !UnwindSafe for ZirconParentDriver
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