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