#[non_exhaustive]#[repr(u32)]pub enum pm_loop_flags {
PM_LOOP_FLAGS_BEGIN_MODIFIER = 4,
}
Expand description
Flags for while and until loop nodes.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
PM_LOOP_FLAGS_BEGIN_MODIFIER = 4
a loop after a begin statement, so the body is executed first before the condition
Trait Implementations§
Source§impl Clone for pm_loop_flags
impl Clone for pm_loop_flags
Source§fn clone(&self) -> pm_loop_flags
fn clone(&self) -> pm_loop_flags
Returns a copy 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 moreSource§impl Debug for pm_loop_flags
impl Debug for pm_loop_flags
Source§impl Hash for pm_loop_flags
impl Hash for pm_loop_flags
Source§impl PartialEq for pm_loop_flags
impl PartialEq for pm_loop_flags
impl Copy for pm_loop_flags
impl Eq for pm_loop_flags
impl StructuralPartialEq for pm_loop_flags
Auto Trait Implementations§
impl Freeze for pm_loop_flags
impl RefUnwindSafe for pm_loop_flags
impl Send for pm_loop_flags
impl Sync for pm_loop_flags
impl Unpin for pm_loop_flags
impl UnwindSafe for pm_loop_flags
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