pub enum PhpControlFlowLabel {
Show 17 variants
If,
Else,
ElseIf,
For,
Foreach,
While,
DoWhile,
Switch,
Match,
Try,
Catch,
Finally,
Break,
Continue,
Return,
Throw,
Yield,
}Variants§
If
Else
ElseIf
For
Foreach
While
DoWhile
Switch
Match
Try
Catch
Finally
Break
Continue
Return
Throw
Yield
Implementations§
Trait Implementations§
Source§impl Clone for PhpControlFlowLabel
impl Clone for PhpControlFlowLabel
Source§fn clone(&self) -> PhpControlFlowLabel
fn clone(&self) -> PhpControlFlowLabel
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 PhpControlFlowLabel
impl Debug for PhpControlFlowLabel
Source§impl Display for PhpControlFlowLabel
impl Display for PhpControlFlowLabel
Source§impl FromStr for PhpControlFlowLabel
impl FromStr for PhpControlFlowLabel
Source§impl Hash for PhpControlFlowLabel
impl Hash for PhpControlFlowLabel
Source§impl Ord for PhpControlFlowLabel
impl Ord for PhpControlFlowLabel
Source§fn cmp(&self, other: &PhpControlFlowLabel) -> Ordering
fn cmp(&self, other: &PhpControlFlowLabel) -> 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 PhpControlFlowLabel
impl PartialEq for PhpControlFlowLabel
Source§fn eq(&self, other: &PhpControlFlowLabel) -> bool
fn eq(&self, other: &PhpControlFlowLabel) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PhpControlFlowLabel
impl PartialOrd for PhpControlFlowLabel
impl Copy for PhpControlFlowLabel
impl Eq for PhpControlFlowLabel
impl StructuralPartialEq for PhpControlFlowLabel
Auto Trait Implementations§
impl Freeze for PhpControlFlowLabel
impl RefUnwindSafe for PhpControlFlowLabel
impl Send for PhpControlFlowLabel
impl Sync for PhpControlFlowLabel
impl Unpin for PhpControlFlowLabel
impl UnsafeUnpin for PhpControlFlowLabel
impl UnwindSafe for PhpControlFlowLabel
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