pub enum PhpErrorKind {
Runtime,
Parse,
Compile,
Core,
User,
Deprecation,
Unknown,
}Expand description
Broad PHP diagnostic category metadata.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PhpErrorKind
impl Clone for PhpErrorKind
Source§fn clone(&self) -> PhpErrorKind
fn clone(&self) -> PhpErrorKind
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 PhpErrorKind
impl Debug for PhpErrorKind
Source§impl Display for PhpErrorKind
impl Display for PhpErrorKind
Source§impl FromStr for PhpErrorKind
impl FromStr for PhpErrorKind
Source§impl Hash for PhpErrorKind
impl Hash for PhpErrorKind
Source§impl Ord for PhpErrorKind
impl Ord for PhpErrorKind
Source§fn cmp(&self, other: &PhpErrorKind) -> Ordering
fn cmp(&self, other: &PhpErrorKind) -> 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 PhpErrorKind
impl PartialEq for PhpErrorKind
Source§fn eq(&self, other: &PhpErrorKind) -> bool
fn eq(&self, other: &PhpErrorKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PhpErrorKind
impl PartialOrd for PhpErrorKind
impl Copy for PhpErrorKind
impl Eq for PhpErrorKind
impl StructuralPartialEq for PhpErrorKind
Auto Trait Implementations§
impl Freeze for PhpErrorKind
impl RefUnwindSafe for PhpErrorKind
impl Send for PhpErrorKind
impl Sync for PhpErrorKind
impl Unpin for PhpErrorKind
impl UnsafeUnpin for PhpErrorKind
impl UnwindSafe for PhpErrorKind
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