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