Enum PhpLiteralKind
pub enum PhpLiteralKind {
String,
Integer,
Float,
Boolean,
Null,
Array,
Heredoc,
Nowdoc,
}Expand description
PHP literal category metadata.
Variants§
Implementations§
§impl PhpLiteralKind
impl PhpLiteralKind
Trait Implementations§
§impl Clone for PhpLiteralKind
impl Clone for PhpLiteralKind
§fn clone(&self) -> PhpLiteralKind
fn clone(&self) -> PhpLiteralKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for PhpLiteralKind
impl Debug for PhpLiteralKind
§impl Hash for PhpLiteralKind
impl Hash for PhpLiteralKind
§impl Ord for PhpLiteralKind
impl Ord for PhpLiteralKind
§impl PartialEq for PhpLiteralKind
impl PartialEq for PhpLiteralKind
§impl PartialOrd for PhpLiteralKind
impl PartialOrd for PhpLiteralKind
impl Copy for PhpLiteralKind
impl Eq for PhpLiteralKind
impl StructuralPartialEq for PhpLiteralKind
Auto Trait Implementations§
impl Freeze for PhpLiteralKind
impl RefUnwindSafe for PhpLiteralKind
impl Send for PhpLiteralKind
impl Sync for PhpLiteralKind
impl Unpin for PhpLiteralKind
impl UnsafeUnpin for PhpLiteralKind
impl UnwindSafe for PhpLiteralKind
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