pub enum PowerShellStatement {
Show 14 variants
Expression(Box<PowerShellExpression>),
Assignment(PowerShellAssignment),
If(PowerShellIf),
While(PowerShellWhile),
For(PowerShellFor),
ForEach(PowerShellForEach),
Switch(PowerShellSwitch),
Try(PowerShellTry),
Return(PowerShellReturn),
Break(PowerShellBreak),
Continue(PowerShellContinue),
Exit(PowerShellExit),
Throw(PowerShellThrow),
Block(PowerShellBlock),
}Expand description
PowerShell 语句
Variants§
Expression(Box<PowerShellExpression>)
Assignment(PowerShellAssignment)
If(PowerShellIf)
While(PowerShellWhile)
For(PowerShellFor)
ForEach(PowerShellForEach)
Switch(PowerShellSwitch)
Try(PowerShellTry)
Return(PowerShellReturn)
Break(PowerShellBreak)
Continue(PowerShellContinue)
Exit(PowerShellExit)
Throw(PowerShellThrow)
Block(PowerShellBlock)
Trait Implementations§
Source§impl Clone for PowerShellStatement
impl Clone for PowerShellStatement
Source§fn clone(&self) -> PowerShellStatement
fn clone(&self) -> PowerShellStatement
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 moreSource§impl Debug for PowerShellStatement
impl Debug for PowerShellStatement
Source§impl<'de> Deserialize<'de> for PowerShellStatement
impl<'de> Deserialize<'de> for PowerShellStatement
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PowerShellStatement
impl PartialEq for PowerShellStatement
Source§impl Serialize for PowerShellStatement
impl Serialize for PowerShellStatement
impl StructuralPartialEq for PowerShellStatement
Auto Trait Implementations§
impl Freeze for PowerShellStatement
impl RefUnwindSafe for PowerShellStatement
impl Send for PowerShellStatement
impl Sync for PowerShellStatement
impl Unpin for PowerShellStatement
impl UnwindSafe for PowerShellStatement
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