#[repr(C)]pub struct _realpath_cache_bucket {
pub key: zend_ulong,
pub path: *mut c_char,
pub realpath: *mut c_char,
pub next: *mut _realpath_cache_bucket,
pub expires: time_t,
pub path_len: u16,
pub realpath_len: u16,
pub _bitfield_align_1: [u8; 0],
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1]>,
pub __bindgen_padding_0: [u8; 3],
}
Fields§
§key: zend_ulong
§path: *mut c_char
§realpath: *mut c_char
§next: *mut _realpath_cache_bucket
§expires: time_t
§path_len: u16
§realpath_len: u16
§_bitfield_align_1: [u8; 0]
§_bitfield_1: __BindgenBitfieldUnit<[u8; 1]>
§__bindgen_padding_0: [u8; 3]
Implementations§
Source§impl _realpath_cache_bucket
impl _realpath_cache_bucket
pub fn is_dir(&self) -> u8
pub fn set_is_dir(&mut self, val: u8)
pub unsafe fn is_dir_raw(this: *const Self) -> u8
pub unsafe fn set_is_dir_raw(this: *mut Self, val: u8)
pub fn new_bitfield_1(is_dir: u8) -> __BindgenBitfieldUnit<[u8; 1]>
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 copy 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
Source§impl Default for _realpath_cache_bucket
impl Default 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