#[repr(C)]pub struct NodeStDirEntry {
pub rb: u32,
pub left: *mut NodeStDirEntry,
pub right: *mut NodeStDirEntry,
pub data: DirEntry,
}Fields§
§rb: u32§left: *mut NodeStDirEntry§right: *mut NodeStDirEntry§data: DirEntryTrait Implementations§
Source§impl Clone for NodeStDirEntry
impl Clone for NodeStDirEntry
Source§fn clone(&self) -> NodeStDirEntry
fn clone(&self) -> NodeStDirEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NodeStDirEntry
impl Debug for NodeStDirEntry
impl Copy for NodeStDirEntry
Auto Trait Implementations§
impl Freeze for NodeStDirEntry
impl RefUnwindSafe for NodeStDirEntry
impl !Send for NodeStDirEntry
impl !Sync for NodeStDirEntry
impl Unpin for NodeStDirEntry
impl UnwindSafe for NodeStDirEntry
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