Enum PhpControlFlowLabel
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§
§impl PhpControlFlowLabel
impl PhpControlFlowLabel
pub const ALL: &'static [PhpControlFlowLabel]
pub const fn as_str(self) -> &'static str
Trait Implementations§
§impl Clone for PhpControlFlowLabel
impl Clone for PhpControlFlowLabel
§fn clone(&self) -> PhpControlFlowLabel
fn clone(&self) -> PhpControlFlowLabel
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 PhpControlFlowLabel
impl Debug for PhpControlFlowLabel
§impl Display for PhpControlFlowLabel
impl Display for PhpControlFlowLabel
§impl FromStr for PhpControlFlowLabel
impl FromStr for PhpControlFlowLabel
§impl Hash for PhpControlFlowLabel
impl Hash for PhpControlFlowLabel
§impl Ord for PhpControlFlowLabel
impl Ord for PhpControlFlowLabel
§fn cmp(&self, other: &PhpControlFlowLabel) -> Ordering
fn cmp(&self, other: &PhpControlFlowLabel) -> Ordering
1.21.0 · 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
§impl PartialEq for PhpControlFlowLabel
impl PartialEq for PhpControlFlowLabel
§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