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