pub struct PhpIniDirectiveName(/* private fields */);Implementations§
Source§impl PhpIniDirectiveName
impl PhpIniDirectiveName
pub fn new(input: &str) -> Result<PhpIniDirectiveName, PhpIniError>
pub fn as_str(&self) -> &str
Trait Implementations§
Source§impl Clone for PhpIniDirectiveName
impl Clone for PhpIniDirectiveName
Source§fn clone(&self) -> PhpIniDirectiveName
fn clone(&self) -> PhpIniDirectiveName
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 PhpIniDirectiveName
impl Debug for PhpIniDirectiveName
Source§impl Display for PhpIniDirectiveName
impl Display for PhpIniDirectiveName
Source§impl FromStr for PhpIniDirectiveName
impl FromStr for PhpIniDirectiveName
Source§type Err = PhpIniError
type Err = PhpIniError
The associated error which can be returned from parsing.
Source§fn from_str(
input: &str,
) -> Result<PhpIniDirectiveName, <PhpIniDirectiveName as FromStr>::Err>
fn from_str( input: &str, ) -> Result<PhpIniDirectiveName, <PhpIniDirectiveName as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for PhpIniDirectiveName
impl Hash for PhpIniDirectiveName
Source§impl Ord for PhpIniDirectiveName
impl Ord for PhpIniDirectiveName
Source§fn cmp(&self, other: &PhpIniDirectiveName) -> Ordering
fn cmp(&self, other: &PhpIniDirectiveName) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PhpIniDirectiveName
impl PartialEq for PhpIniDirectiveName
Source§fn eq(&self, other: &PhpIniDirectiveName) -> bool
fn eq(&self, other: &PhpIniDirectiveName) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PhpIniDirectiveName
impl PartialOrd for PhpIniDirectiveName
impl Eq for PhpIniDirectiveName
impl StructuralPartialEq for PhpIniDirectiveName
Auto Trait Implementations§
impl Freeze for PhpIniDirectiveName
impl RefUnwindSafe for PhpIniDirectiveName
impl Send for PhpIniDirectiveName
impl Sync for PhpIniDirectiveName
impl Unpin for PhpIniDirectiveName
impl UnsafeUnpin for PhpIniDirectiveName
impl UnwindSafe for PhpIniDirectiveName
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