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