#[repr(u32)]pub enum Policy {
All = 7,
User = 1,
Perdir = 2,
System = 4,
}
Expand description
Configuration changeable policy.
Variants§
All = 7
Entry can be set anywhere.
User = 1
Entry can be set in user scripts (like with ini_set()
) or in the
Windows registry. Entry can be set in .user.ini
.
Perdir = 2
Entry can be set in php.ini
, .htaccess
, httpd.conf
or .user.ini
.
System = 4
Entry can be set in php.ini
or httpd.conf
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Policy
impl RefUnwindSafe for Policy
impl Send for Policy
impl Sync for Policy
impl Unpin for Policy
impl UnwindSafe for Policy
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