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