pub struct DIR { /* private fields */ }Expand description
This is an extern type (“opaque” or “incomplete” type in C).
This type's current representation allows inspecting some properties, such as via
size_of, and it is technically possible to construct the type within
MaybeUninit, However, this MUST NOT be relied upon
because a future version of libc may switch to a proper
extern type
representation when available.
Trait Implementations§
impl Copy for DIR
impl Send for DIR
impl Sync for DIR
Auto Trait Implementations§
impl !Unpin for DIR
impl Freeze for DIR
impl RefUnwindSafe for DIR
impl UnsafeUnpin for DIR
impl UnwindSafe for DIR
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