pub enum PhpExtensionKind {
Core,
Bundled,
Pecl,
Zend,
Userland,
Unknown,
}Expand description
PHP extension kind metadata.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PhpExtensionKind
impl Clone for PhpExtensionKind
Source§fn clone(&self) -> PhpExtensionKind
fn clone(&self) -> PhpExtensionKind
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 PhpExtensionKind
impl Debug for PhpExtensionKind
Source§impl Hash for PhpExtensionKind
impl Hash for PhpExtensionKind
Source§impl Ord for PhpExtensionKind
impl Ord for PhpExtensionKind
Source§fn cmp(&self, other: &PhpExtensionKind) -> Ordering
fn cmp(&self, other: &PhpExtensionKind) -> 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 PhpExtensionKind
impl PartialEq for PhpExtensionKind
Source§fn eq(&self, other: &PhpExtensionKind) -> bool
fn eq(&self, other: &PhpExtensionKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PhpExtensionKind
impl PartialOrd for PhpExtensionKind
impl Copy for PhpExtensionKind
impl Eq for PhpExtensionKind
impl StructuralPartialEq for PhpExtensionKind
Auto Trait Implementations§
impl Freeze for PhpExtensionKind
impl RefUnwindSafe for PhpExtensionKind
impl Send for PhpExtensionKind
impl Sync for PhpExtensionKind
impl Unpin for PhpExtensionKind
impl UnsafeUnpin for PhpExtensionKind
impl UnwindSafe for PhpExtensionKind
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