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