pub enum PhpIniValue {
String(String),
Integer(i64),
Float(f64),
Boolean(bool),
Null,
}Expand description
Scalar PHP INI value metadata.
Variants§
Trait Implementations§
Source§impl Clone for PhpIniValue
impl Clone for PhpIniValue
Source§fn clone(&self) -> PhpIniValue
fn clone(&self) -> PhpIniValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PhpIniValue
impl Debug for PhpIniValue
Source§impl Display for PhpIniValue
impl Display for PhpIniValue
Source§impl FromStr for PhpIniValue
impl FromStr for PhpIniValue
Source§impl PartialEq for PhpIniValue
impl PartialEq for PhpIniValue
Source§fn eq(&self, other: &PhpIniValue) -> bool
fn eq(&self, other: &PhpIniValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PhpIniValue
Auto Trait Implementations§
impl Freeze for PhpIniValue
impl RefUnwindSafe for PhpIniValue
impl Send for PhpIniValue
impl Sync for PhpIniValue
impl Unpin for PhpIniValue
impl UnsafeUnpin for PhpIniValue
impl UnwindSafe for PhpIniValue
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