pub struct PowerShellBlock {
pub statements: Vec<PowerShellStatement>,
}Expand description
PowerShell 代码块
Fields§
§statements: Vec<PowerShellStatement>Trait Implementations§
Source§impl Clone for PowerShellBlock
impl Clone for PowerShellBlock
Source§fn clone(&self) -> PowerShellBlock
fn clone(&self) -> PowerShellBlock
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 PowerShellBlock
impl Debug for PowerShellBlock
Source§impl<'de> Deserialize<'de> for PowerShellBlock
impl<'de> Deserialize<'de> for PowerShellBlock
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 PowerShellBlock
impl PartialEq for PowerShellBlock
Source§impl Serialize for PowerShellBlock
impl Serialize for PowerShellBlock
impl StructuralPartialEq for PowerShellBlock
Auto Trait Implementations§
impl Freeze for PowerShellBlock
impl RefUnwindSafe for PowerShellBlock
impl Send for PowerShellBlock
impl Sync for PowerShellBlock
impl Unpin for PowerShellBlock
impl UnwindSafe for PowerShellBlock
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