pub struct PowerShellParamBlock {
pub parameters: Vec<PowerShellParameter>,
}Expand description
A PowerShell parameter block (e.g., param(...)).
Fields§
§parameters: Vec<PowerShellParameter>Parameters in the block.
Trait Implementations§
Source§impl Clone for PowerShellParamBlock
impl Clone for PowerShellParamBlock
Source§fn clone(&self) -> PowerShellParamBlock
fn clone(&self) -> PowerShellParamBlock
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 PowerShellParamBlock
impl Debug for PowerShellParamBlock
Source§impl<'de> Deserialize<'de> for PowerShellParamBlock
impl<'de> Deserialize<'de> for PowerShellParamBlock
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 PowerShellParamBlock
impl PartialEq for PowerShellParamBlock
Source§impl Serialize for PowerShellParamBlock
impl Serialize for PowerShellParamBlock
impl StructuralPartialEq for PowerShellParamBlock
Auto Trait Implementations§
impl Freeze for PowerShellParamBlock
impl RefUnwindSafe for PowerShellParamBlock
impl Send for PowerShellParamBlock
impl Sync for PowerShellParamBlock
impl Unpin for PowerShellParamBlock
impl UnsafeUnpin for PowerShellParamBlock
impl UnwindSafe for PowerShellParamBlock
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