#[repr(C)]pub struct _virtual_cwd_globals {
pub cwd: cwd_state,
pub realpath_cache_size: zend_long,
pub realpath_cache_size_limit: zend_long,
pub realpath_cache_ttl: zend_long,
pub realpath_cache: [*mut realpath_cache_bucket; 1024],
}
Fields§
§cwd: cwd_state
§realpath_cache_size: zend_long
§realpath_cache_size_limit: zend_long
§realpath_cache_ttl: zend_long
§realpath_cache: [*mut realpath_cache_bucket; 1024]
Trait Implementations§
Source§impl Clone for _virtual_cwd_globals
impl Clone for _virtual_cwd_globals
Source§fn clone(&self) -> _virtual_cwd_globals
fn clone(&self) -> _virtual_cwd_globals
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 moreimpl Copy for _virtual_cwd_globals
Auto Trait Implementations§
impl Freeze for _virtual_cwd_globals
impl RefUnwindSafe for _virtual_cwd_globals
impl !Send for _virtual_cwd_globals
impl !Sync for _virtual_cwd_globals
impl Unpin for _virtual_cwd_globals
impl UnwindSafe for _virtual_cwd_globals
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