pub struct PowerShellWorkflow {
pub name: String,
pub parameters: Vec<PowerShellParameter>,
pub body: PowerShellScriptBlock,
}Expand description
PowerShell 工作流
Fields§
§name: String§parameters: Vec<PowerShellParameter>§body: PowerShellScriptBlockTrait Implementations§
Source§impl Clone for PowerShellWorkflow
impl Clone for PowerShellWorkflow
Source§fn clone(&self) -> PowerShellWorkflow
fn clone(&self) -> PowerShellWorkflow
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 PowerShellWorkflow
impl Debug for PowerShellWorkflow
Source§impl<'de> Deserialize<'de> for PowerShellWorkflow
impl<'de> Deserialize<'de> for PowerShellWorkflow
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 PowerShellWorkflow
impl PartialEq for PowerShellWorkflow
Source§impl Serialize for PowerShellWorkflow
impl Serialize for PowerShellWorkflow
impl StructuralPartialEq for PowerShellWorkflow
Auto Trait Implementations§
impl Freeze for PowerShellWorkflow
impl RefUnwindSafe for PowerShellWorkflow
impl Send for PowerShellWorkflow
impl Sync for PowerShellWorkflow
impl Unpin for PowerShellWorkflow
impl UnwindSafe for PowerShellWorkflow
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