#[repr(C)]pub struct _realpath_cache_bucket {
pub key: c_ulong,
pub path: *mut c_char,
pub path_len: c_int,
pub realpath: *mut c_char,
pub realpath_len: c_int,
pub is_dir: c_int,
pub expires: time_t,
pub next: *mut _realpath_cache_bucket,
}
Fields§
§key: c_ulong
§path: *mut c_char
§path_len: c_int
§realpath: *mut c_char
§realpath_len: c_int
§is_dir: c_int
§expires: time_t
§next: *mut _realpath_cache_bucket
Trait Implementations§
Source§impl Clone for _realpath_cache_bucket
impl Clone for _realpath_cache_bucket
Source§fn clone(&self) -> _realpath_cache_bucket
fn clone(&self) -> _realpath_cache_bucket
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 moreSource§impl Debug for _realpath_cache_bucket
impl Debug for _realpath_cache_bucket
impl Copy for _realpath_cache_bucket
Auto Trait Implementations§
impl Freeze for _realpath_cache_bucket
impl RefUnwindSafe for _realpath_cache_bucket
impl !Send for _realpath_cache_bucket
impl !Sync for _realpath_cache_bucket
impl Unpin for _realpath_cache_bucket
impl UnwindSafe for _realpath_cache_bucket
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