pub struct PowerShellFor {
pub init: Option<Box<PowerShellExpression>>,
pub condition: Option<Box<PowerShellExpression>>,
pub update: Option<Box<PowerShellExpression>>,
pub block: PowerShellScriptBlock,
}Expand description
PowerShell for 语句
Fields§
§init: Option<Box<PowerShellExpression>>§condition: Option<Box<PowerShellExpression>>§update: Option<Box<PowerShellExpression>>§block: PowerShellScriptBlockTrait Implementations§
Source§impl Clone for PowerShellFor
impl Clone for PowerShellFor
Source§fn clone(&self) -> PowerShellFor
fn clone(&self) -> PowerShellFor
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 PowerShellFor
impl Debug for PowerShellFor
Source§impl<'de> Deserialize<'de> for PowerShellFor
impl<'de> Deserialize<'de> for PowerShellFor
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 PowerShellFor
impl PartialEq for PowerShellFor
Source§impl Serialize for PowerShellFor
impl Serialize for PowerShellFor
impl StructuralPartialEq for PowerShellFor
Auto Trait Implementations§
impl Freeze for PowerShellFor
impl RefUnwindSafe for PowerShellFor
impl Send for PowerShellFor
impl Sync for PowerShellFor
impl Unpin for PowerShellFor
impl UnwindSafe for PowerShellFor
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