pub struct PowerShellCommand {
pub name: String,
pub arguments: Vec<PowerShellArgument>,
}Expand description
PowerShell 命令
Fields§
§name: String§arguments: Vec<PowerShellArgument>Trait Implementations§
Source§impl Clone for PowerShellCommand
impl Clone for PowerShellCommand
Source§fn clone(&self) -> PowerShellCommand
fn clone(&self) -> PowerShellCommand
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 PowerShellCommand
impl Debug for PowerShellCommand
Source§impl<'de> Deserialize<'de> for PowerShellCommand
impl<'de> Deserialize<'de> for PowerShellCommand
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 PowerShellCommand
impl PartialEq for PowerShellCommand
Source§impl Serialize for PowerShellCommand
impl Serialize for PowerShellCommand
impl StructuralPartialEq for PowerShellCommand
Auto Trait Implementations§
impl Freeze for PowerShellCommand
impl RefUnwindSafe for PowerShellCommand
impl Send for PowerShellCommand
impl Sync for PowerShellCommand
impl Unpin for PowerShellCommand
impl UnwindSafe for PowerShellCommand
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